CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
Fixed major update for Arch-Maintainer's email (all ports)
[crossrootfs.git] / readline / Pkgfile
CommitLineData
6dca1d21
JB
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
b751b192 4# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
6dca1d21
JB
5# Depends on:
6
7name=readline
89d5e262
VM
8version=6.1
9release=1
10source=(http://ftp.gnu.org/gnu/$name/$name-${version}.tar.gz \
11 inputrc)
6dca1d21
JB
12
13build() {
89d5e262 14 cd $name-${version}
6dca1d21
JB
15 ./configure --build=$CHOST \
16 --host=$CTARGET \
70e50f03
JB
17 --prefix=/usr \
18 --mandir=/usr/man
6dca1d21
JB
19 make
20 make DESTDIR=$PKG install
21 install -D -m 644 $SRC/inputrc $PKG/etc/inputrc
70e50f03 22 rm -rf $PKG/usr/share/info
6dca1d21 23}