summaryrefslogtreecommitdiffstats
path: root/testing/xdg-utils/APKBUILD
blob: 70b268c23e99990461d48bcf6239bb83ca2c4479 (plain)
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
33
34
35
36
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=xdg-utils
pkgver=1.0.2
pkgrel=0
pkgdesc="Basic desktop integration functions"
url="http://portland.freedesktop.org/wiki/"
arch="all"
license="MIT"
depends=
makedepends=
install=
subpackages="$pkgname-doc"
source="http://portland.freedesktop.org/download/xdg-utils-$pkgver.tgz"

_builddir="$srcdir"/$pkgname-$pkgver

prepare() {
	cd "$_builddir"
}

build() {
	cd "$_builddir"
	./configure --prefix=/usr \
		--sysconfdir=/etc \
		--mandir=/usr/share/man \
		--infodir=/usr/share/info
	make || return 1
}

package() {
	cd "$_builddir"
	make DESTDIR="$pkgdir" install
}

md5sums="348a5b91dc66426505022c74a64b2940  xdg-utils-1.0.2.tgz"