CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
e7b7d676ab69b6af7dd1a0dec6bc898b468da0ca
[crossrootfs.git] / readline / Pkgfile
1 # Description: Lets users edit command lines as they are typed in
2 # URL: http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html
3 # Maintainer: CRUX System Team, core-ports at crux dot nu
4 # Arch Maintainer: CRUX-ARM System Team, crux-arm at mikeux dot dyndns dot org
5 # Depends on:
6
7 name=readline
8 version=6.0.4
9 release=2
10 source=(http://ftp.gnu.org/gnu/$name/$name-${version%.*}.tar.gz \
11 $name-6.0-001-004.patch inputrc)
12
13 build() {
14 cd $name-${version%.*}
15 patch -p0 -i $SRC/$name-6.0-001-004.patch
16 ./configure --build=$CHOST \
17 --host=$CTARGET \
18 --prefix=/usr \
19 --mandir=/usr/man
20 make
21 make DESTDIR=$PKG install
22 install -D -m 644 $SRC/inputrc $PKG/etc/inputrc
23 rm -rf $PKG/usr/share/info
24 }