mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 19:47:13 +08:00
24 lines
730 B
Bash
24 lines
730 B
Bash
# $Id: PKGBUILD 84000 2010-06-25 09:22:24Z tpowa $
|
|
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
|
|
|
|
pkgname=pmount
|
|
pkgver=0.9.23
|
|
pkgrel=1
|
|
pkgdesc="mount removable devices as normal user"
|
|
arch=(i686 x86_64)
|
|
license=('GPL2')
|
|
url="http://pmount.alioth.debian.org/"
|
|
backup=('etc/pmount.allow')
|
|
depends=('sysfsutils>=2.0.0-1' 'bash')
|
|
optdepends=('hal: needed for pmount-hal')
|
|
makedepends=('intltool' 'hal')
|
|
source=(https://alioth.debian.org/frs/download.php/3310/pmount-0.9.23.tar.bz2)
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --with-cryptsetup-prog=/sbin/cryptsetup || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|
|
md5sums=('db19f5bf3151b1b41705ec7bafa439d3')
|