summaryrefslogtreecommitdiff
path: root/repo/system/popt.xibuild
blob: 5927be00acf55b16a3df0340b4461535f70b9e60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

MAKEDEPS="make "
DEPS="glibc"

PKG_VER=1.18
SOURCE=http://ftp.rpm.org/popt/releases/popt-1.x/popt-$PKG_VER.tar.gz
DESC="Libraries for parsing command line options"

build () {
    ./configure --prefix=/usr --disable-static &&
    make
}

package () {
    make DESTDIR=$PKG_DEST install 
}