2019-03-02 17:21:45 -06:00
|
|
|
# Description: An implementation of the XDG Base Directory specifications
|
2021-02-27 15:18:16 -06:00
|
|
|
# URL: https://github.com/davmac314/libxdg-basedir
|
2019-03-02 17:21:45 -06:00
|
|
|
# Maintainer: Matt Housh, jaeger at crux dot ninja
|
|
|
|
|
|
|
|
name=libxdg-basedir
|
2021-02-27 15:18:16 -06:00
|
|
|
version=1.2.2
|
2019-03-02 17:21:45 -06:00
|
|
|
release=1
|
2021-02-27 15:18:16 -06:00
|
|
|
source=(https://github.com/davmac314/$name/archive/v$version/$name-$version.tar.gz)
|
2019-03-02 17:21:45 -06:00
|
|
|
|
|
|
|
build() {
|
2021-02-27 15:18:16 -06:00
|
|
|
cd $name-$version
|
2019-03-02 17:21:45 -06:00
|
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
|
|
./configure --prefix=/usr
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
}
|