17 lines
389 B
Plaintext
17 lines
389 B
Plaintext
# Description: commandline option parser
|
|
# URL: https://github.com/rpm-software-management/popt
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
# Depends on: gettext
|
|
|
|
name=popt
|
|
version=1.19
|
|
release=1
|
|
source=(http://ftp.rpm.org/popt/releases/popt-1.x/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr --disable-nls
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|