CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
b35a136c66343f2c00976c11436c0c00f4c14c22
[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=1
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 make
20 make DESTDIR=$PKG install
21 install -D -m 644 $SRC/inputrc $PKG/etc/inputrc
22 rm -rf $PKG/usr/info
23 }