blob: a8ac93129218e60d17d3169cb0719a0fa7004868 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#!/bin/mkpkg
# description: Implementation of the XDG Base Directory specifications
# url: https://github.com/devnev/libxdg-basedir
name=libxdg-basedir
version=1.2.3
release=1
depends=()
makedepends=(autoconf automake libtool)
source=(https://github.com/devnev/$name/archive/$name-$version.tar.gz)
renames=($name-$version.tar.gz)
sha256sums=(
"ff30c60161f7043df4dcc6e7cdea8e064e382aa06c73dcc3d1885c7d2c77451d"
)
build() {
cd $name-$name-$version
autoreconf -fi
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}
signify() {
untrusted comment: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|