aboutsummaryrefslogtreecommitdiffstats
path: root/core/fakeroot/APKBUILD
blob: ed38a537e2e807ce70f1a6e70a972313139aedb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=fakeroot
pkgver=1.12.3
pkgrel=0
pkgdesc="Gives a fake root environment, useful for building packages as a non-privileged user"
license='GPL'
url="http://packages.debian.org/fakeroot"
depends=
subpackages="$pkgname-dev $pkgname-doc"
source="http://ftp.debian.org/debian/pool/main/f/$pkgname/${pkgname}_${pkgver}.tar.gz
	busybox-compat.patch"

build() {
  cd $startdir/src/$pkgname-$pkgver
  patch -p1 < ../busybox-compat.patch
  CONFIG_SHELL=/bin/sh ./configure --prefix=/usr
  make || return 1
  make DESTDIR="$pkgdir" install
}

md5sums="5b482b106e7417a9d7aa5b03a37911cc  fakeroot_1.12.3.tar.gz
ea7b7e3065090d72804cdf4719dd5832  busybox-compat.patch"