libxdg-basedir: initial import, version 1.2.0

This commit is contained in:
Matt Housh 2019-03-02 17:21:45 -06:00
parent 80e7f117f5
commit e16bd3760f
4 changed files with 34 additions and 0 deletions

12
libxdg-basedir/.footprint Normal file
View File

@ -0,0 +1,12 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/basedir.h
-rw-r--r-- root/root usr/include/basedir_fs.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/libxdg-basedir.a
-rwxr-xr-x root/root usr/lib/libxdg-basedir.la
lrwxrwxrwx root/root usr/lib/libxdg-basedir.so -> libxdg-basedir.so.1.2.0
lrwxrwxrwx root/root usr/lib/libxdg-basedir.so.1 -> libxdg-basedir.so.1.2.0
-rwxr-xr-x root/root usr/lib/libxdg-basedir.so.1.2.0
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/libxdg-basedir.pc

1
libxdg-basedir/.md5sum Normal file
View File

@ -0,0 +1 @@
bd3bb815c9e27fda9c721b9c0b29ddda libxdg-basedir-1.2.0.tar.gz

View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF37ug5yDEMl8YghHrW5wJtVRnakncUmKm96DPBtBkoiCfBOI+7/CAERq9mR4yjPCXEdKDCdHILp0FbKpukPvzAAQ=
SHA256 (Pkgfile) = 43539fb81217ad828009f3aa7f353fbb2a92d1049316d4635ce606e688e0bc9d
SHA256 (.footprint) = 9bebe11b48966f10b1311b9995a2ae64722ce578ae1f2689d67876030a5229d7
SHA256 (libxdg-basedir-1.2.0.tar.gz) = 1c2b0032a539033313b5be2e48ddd0ae94c84faf21d93956d53562eef4614868

16
libxdg-basedir/Pkgfile Normal file
View File

@ -0,0 +1,16 @@
# 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.0
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
}