mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-05 04:16:46 +02:00
testing/cifs-utils: new apkbuild - mount.cifs was move out from samba server git tree
This commit is contained in:
parent
94d35835d0
commit
da95104244
41
testing/cifs-utils/APKBUILD
Normal file
41
testing/cifs-utils/APKBUILD
Normal file
@ -0,0 +1,41 @@
|
||||
# Contributor: Francesco Colista <francesco.colista@gmail.com>
|
||||
# Maintainer: Francesco Colista <francesco.colista@gmail.com>
|
||||
pkgname=cifs-utils
|
||||
pkgver=4.9
|
||||
pkgrel=0
|
||||
pkgdesc="CIFS filesystem user-space tools"
|
||||
url="http://wiki.samba.org/index.php/LinuxCIFS_utils"
|
||||
arch="all"
|
||||
license="GPL"
|
||||
depends="libcap-dev keyutils-dev"
|
||||
depends_dev=""
|
||||
makedepends="$depends_dev"
|
||||
install=""
|
||||
subpackages="$pkgname-doc"
|
||||
source="ftp://ftp.samba.org/pub/linux-cifs/cifs-utils/$pkgname-$pkgver.tar.bz2"
|
||||
_builddir=$srcdir/$pkgname-$pkgver
|
||||
prepare() {
|
||||
local i
|
||||
cd "$_builddir"
|
||||
for i in $source; do
|
||||
case $i in
|
||||
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
||||
esac
|
||||
done
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "$_builddir"
|
||||
./configure --prefix=/usr \
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir/$pkgname-$pkgver"
|
||||
make DESTDIR="$pkgdir" install
|
||||
rm -r $pkgdir/usr/bin
|
||||
# set mount.cifs uid, to enable none root mounting form fstab
|
||||
chmod +s $pkgdir/sbin/mount.cifs
|
||||
}
|
||||
|
||||
md5sums="908d904e6b9e58f09f530de151a88ef8 cifs-utils-4.9.tar.bz2"
|
||||
Loading…
x
Reference in New Issue
Block a user