mirror of
https://github.com/archlinux/aur.git
synced 2026-02-11 07:34:23 +01:00
Initial PKGBUILD status as of 28.11.2014
This commit is contained in:
commit
d1eb2d749f
3 changed files with 63 additions and 0 deletions
16
.AURINFO
Normal file
16
.AURINFO
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
pkgbase = file-rename-utils
|
||||
pkgdesc = Set of file renaming utils written in bash
|
||||
pkgver = 1.7.3
|
||||
pkgrel = 2
|
||||
url = http://filerenameutils.sourceforge.net
|
||||
arch = any
|
||||
license = GPL
|
||||
depends = bash
|
||||
depends = coreutils
|
||||
depends = findutils
|
||||
depends = sed
|
||||
depends = mariadb
|
||||
source = http://downloads.sourceforge.net/filerenameutils/file-rename-utils-1.7.3.tgz
|
||||
|
||||
pkgname = file-rename-utils
|
||||
|
||||
17
.SRCINFO
Normal file
17
.SRCINFO
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
pkgbase = file-rename-utils
|
||||
pkgdesc = Set of file renaming utils written in bash
|
||||
pkgver = 1.7.3
|
||||
pkgrel = 2
|
||||
url = http://filerenameutils.sourceforge.net
|
||||
arch = any
|
||||
license = GPL
|
||||
depends = bash
|
||||
depends = coreutils
|
||||
depends = findutils
|
||||
depends = sed
|
||||
depends = mariadb
|
||||
source = http://downloads.sourceforge.net/filerenameutils/file-rename-utils-1.7.3.tgz
|
||||
sha256sums = 4dd5b3d9ded64881b7e1dc8796dab0e00b52ef553baa1d95285c6eae4c60e913
|
||||
|
||||
pkgname = file-rename-utils
|
||||
|
||||
30
PKGBUILD
Normal file
30
PKGBUILD
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
|
||||
|
||||
pkgname=file-rename-utils
|
||||
pkgver=1.7.3
|
||||
pkgrel=2
|
||||
pkgdesc="Set of file renaming utils written in bash"
|
||||
arch=('any')
|
||||
url="http://filerenameutils.sourceforge.net"
|
||||
license=('GPL')
|
||||
depends=('bash' 'coreutils' 'findutils' 'sed' 'mariadb')
|
||||
source=(http://downloads.sourceforge.net/filerenameutils/$pkgname-$pkgver.tgz)
|
||||
sha256sums=('4dd5b3d9ded64881b7e1dc8796dab0e00b52ef553baa1d95285c6eae4c60e913')
|
||||
|
||||
package() {
|
||||
cd "${srcdir}"/$pkgname
|
||||
|
||||
install -d "${pkgdir}"/usr/bin
|
||||
cp -R \
|
||||
fromto htmlrename KTrash lowercase mv_capitalize mv_chars2null \
|
||||
mv_chars2underscore mv_lowercase mv_number mv_number.ext \
|
||||
mv_prefix mv_sed mv_spaces2underscore mv_suffix mv_underscore2hyphen \
|
||||
mv_uppercase replace swap Trash "${pkgdir}"/usr/bin
|
||||
|
||||
install -d "${pkgdir}"/usr/man/man1
|
||||
cp -R man/* "${pkgdir}"/usr/man/man1
|
||||
|
||||
#file conflict with mysql package
|
||||
mv "${pkgdir}"/usr/bin/replace "${pkgdir}"/usr/bin/replace-fru
|
||||
mv "${pkgdir}"/usr/man/man1/replace.1.bz2 "${pkgdir}"/usr/man/man1/replace-fru.1.bz2
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue