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

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 
}