You are not logged in.
"unpack (almost) everything with one command"
I used to use this program on my old debian distro and I love it. So I build a PKGBUILD for this program. The problem is that the home page is down and I had to download the sources from the debian site.
It is not a big proble 'cause it works...
This is the PKGBUILD :
# PKGBUILD for unp
# Maintainer : namlook <namlook at laposte dot net>
# 2004/06/02
pkgname=unp
pkgver=1.0.9
pkgrel=1
pkgdesc="unpack (almost) everything with one command"
depends=('bzip2' 'tar' 'gzip' 'unarj' 'cpio' 'cabextract' 'lzop' 'unzip' 'lha' )
source=(http://ftp.debian.org/debian/pool/main/u/unp/unp_1.0.9.tar.gz)
url="http://sites.inka.de/~W1752/edecosi/unp.en.html"
md5sums=('3278101819b4f00d0a868fbda874a6a5')
build() {
cd $startdir/src/$pkgname-$pkgver || return 1
mkdir -p $startdir/pkg/usr/bin
cp unp $startdir/pkg/usr/bin
}
Have fun !
Namlook
Offline
Thank you!!
Here's the new version!!
# PKGBUILD for unp
# Maintainer : namlook <namlook at laposte dot net>
# 2004/11/11
pkgname=unp
pkgver=1.0.10
pkgrel=1
pkgdesc="unpack (almost) everything with one command"
depends=('bzip2' 'tar' 'gzip' 'unarj' 'cpio' 'cabextract' 'lzop' 'unzip'
'lha' )
source=(http://ftp.debian.org/debian/pool/main/u/unp/unp_1.0.10.tar.gz)
url="http://sites.inka.de/~W1752/edecosi/unp.en.html"
md5sums=('b9efabc9ee610c6879f67fc3bb65030d')
build() {
cd $startdir/src/$pkgname-$pkgver || return 1
mkdir -p $startdir/pkg/usr/bin
cp unp $startdir/pkg/usr/bin
}
HINT: pacman -S unarj cabextract lzop lha
THX!!
cu matsche
Offline