updated on Wed Jan 25 16:08:47 UTC 2012
[aur-mirror.git] / mvatom / PKGBUILD
blobf8c4c6ae0654ed43659865002c38e5d8c62e6fd1
1 # Maintainer: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
3 pkgname=mvatom
4 pkgver=0.4.3
5 _pkgver=${pkgver}-20090409-200703
6 pkgrel=2
7 pkgdesc="Move files by atomic rename instead of copy"
8 arch=('i686' 'x86_64')
9 url="http://www.scylla-charybdis.com/tool.php/${pkgname}"
10 license=('GPL2')
11 depends=('glibc')
12 source=(http://www.scylla-charybdis.com/download/${pkgname}-${_pkgver}.tar.gz)
13 md5sums=('ceb036a93189e70b5243669c45538214')
15 build() {
16   cd "$srcdir/${pkgname}-${_pkgver}"
18   make || return 1
19   install -d ${pkgdir}/usr/bin
20   install -m 755 ${pkgname} ${pkgdir}/usr/bin/
21   install -m 755 dirlist ${pkgdir}/usr/bin/
22   ## install cmp
23   install -m 755 cmpanddel.sh ${pkgdir}/usr/bin/
26 # vim:set ts=2 sw=2 et: