blob: 4b9061dd2ed5ce34a81be84e3d3fb00946f79d20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
DESCRIPTION = "Corrects you if you type sl by mistake"
SECTION = "console/games"
LICENSE = "unknown"
DEPENDS = "ncurses"
SRC_URI = "http://archive.ubuntu.com/ubuntu/pool/universe/s/sl/sl_3.03.orig.tar.gz \
http://archive.ubuntu.com/ubuntu/pool/universe/s/sl/sl_3.03-14.diff.gz;patch=1"
S = "${WORKDIR}/${P}.orig"
LDFLAGS += "-lncurses"
do_install() {
install -d ${D}${bindir}
install -m 755 sl ${D}${bindir}
}
|