mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-06 01:02:26 +01:00
Since abuild v2.22.0, these are removed automatically unless 'libtool' option has been specified.
46 lines
988 B
Plaintext
46 lines
988 B
Plaintext
# Contributor: William Pitcock <nenolod@dereferenced.org>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libxdg-basedir
|
|
pkgver=1.2.0
|
|
pkgrel=0
|
|
pkgdesc="library for XDG base dir specification"
|
|
url="http://n.ethz.ch/~nevillm/download/libxdg-basedir/"
|
|
arch="all"
|
|
license="MIT"
|
|
depends=
|
|
depends_dev=
|
|
makedepends="$depends_dev"
|
|
install=""
|
|
subpackages="$pkgname-dev"
|
|
source="http://dev.alpinelinux.org/archive/libxdg-basedir/libxdg-basedir-$pkgver.tar.gz"
|
|
|
|
_builddir="${srcdir}/${pkgname}-${pkgver}"
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
update_config_sub || return 1
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
|| return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
}
|
|
|
|
md5sums="5a9eaaba2ec7f62253ecaed032af313b libxdg-basedir-1.2.0.tar.gz"
|