mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
19 lines
629 B
Bash
19 lines
629 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Allan McRae <allan@archlinux.org>
|
|
# Contributor: Nick Bolten <Shirakawasuna at gmail _dot_ com>
|
|
|
|
pkgname=gprename
|
|
pkgver=2.6.3
|
|
pkgrel=1
|
|
pkgdesc="A GTK2 batch renamer for files and directories"
|
|
arch=('i686' 'x86_64')
|
|
url="http://gprename.sourceforge.net/"
|
|
license=('GPL3')
|
|
depends=('gtk2-perl' 'perl-libintl-perl' 'perl-locale-gettext')
|
|
source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
|
|
md5sums=('093e78ff633ecf4ed2df94773cd85adc')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
make PREFIX=/usr DESTDIR=${pkgdir}/usr install || return 1
|
|
}
|