17 lines
430 B
Plaintext
17 lines
430 B
Plaintext
# Description: An implementation of the XDG Base Directory specifications
|
|
# URL: https://github.com/devnev/libxdg-basedir
|
|
# Maintainer: Matt Housh, jaeger at crux dot ninja
|
|
|
|
name=libxdg-basedir
|
|
version=1.2.3
|
|
release=1
|
|
source=(https://github.com/devnev/$name/archive/$name-$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$name-$version
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|