diff options
author | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2011-07-19 15:31:56 -0300 |
---|---|---|
committer | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2011-07-19 15:31:56 -0300 |
commit | 2229a775d06289b60ea398ff192eb0772823fe53 (patch) | |
tree | cc75d9ac29d90e0ff68d04e446224a7048ed09c5 /libre/lesspipe-libre/rePKGBUILD | |
parent | 4d2780093ffab5e298e62454d2792f3e39512188 (diff) |
libre/lesspipe-libre/
Diffstat (limited to 'libre/lesspipe-libre/rePKGBUILD')
-rw-r--r-- | libre/lesspipe-libre/rePKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/libre/lesspipe-libre/rePKGBUILD b/libre/lesspipe-libre/rePKGBUILD new file mode 100644 index 000000000..cb388a715 --- /dev/null +++ b/libre/lesspipe-libre/rePKGBUILD @@ -0,0 +1,26 @@ +# Maintainer: Nicolás Reynolds <fauno@kiwwwi.com.ar> +source PKGBUILD +#CARCH=x86_64 +unset build package md5sums source +_repo=community # Put the repo here +_mirror=http://mirrors.kernel.org/archlinux # Put mirror here +source=(PKGBUILD + "${_mirror}/${_repo}/os/${CARCH}/${pkgname%-libre}-$pkgver-$pkgrel-$CARCH$PKGEXT" + # files for pkg modifications below this line + ) +options=(!strip) + +build() { + cd "${srcdir}/" + rm .{INSTALL,PKGINFO} || true + # put actions for package modifications below this line + +} + +package() { + find ${srcdir} -maxdepth 1 -type l -delete + cp -a ${srcdir}/* ${pkgdir} +} + + +# vim:set ts=2 sw=2 et: |