blob: 380ceca68e48fc626784f6f6840d8a296bd33c82 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=bbsuid
pkgver=0.2
pkgrel=1
pkgdesc="Busybox SUID root application wrapper"
url="http://dev.alpinelinux.org/cgit/cgit.cgi/bbsuid"
license="GPL-2"
depends="uclibc busybox"
install="$pkgname.install"
source="http://dev.alpinelinux.org/cgit/cgit.cgi/$pkgname/snapshot/$pkgname-$pkgver.tar.bz2
$install"
build() {
cd "$srcdir/$pkgname"
make || return 1
make install DESTDIR="$pkgdir"
}
md5sums="95e5dfe96d03e8b29405f699f8fb4698 bbsuid-0.2.tar.bz2
63cdf4583deb872ef1db16e1c941ce55 bbsuid.install"
|