blob: a67d0da47269f2253f5660bf7c01bf4117171f96 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/bash
MAKEDEPS=(make )
DEPS=()
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
}
|