22 lines
421 B
Plaintext
22 lines
421 B
Plaintext
# Description: C-library for parsing configuration files
|
|
# URL: https://github.com/martinh/libconfuse
|
|
# Maintainer: unmaintained
|
|
|
|
name=libconfuse
|
|
version=3.3
|
|
release=1
|
|
source=(https://github.com/martinh/$name/releases/download/v$version/${name#lib}-$version.tar.xz)
|
|
|
|
build() {
|
|
cd ${name#lib}-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-nls
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -rf $PKG/usr/share
|
|
}
|