detox: new port

This commit is contained in:
Bartlomiej Palmowski 2013-12-29 12:05:09 +01:00
parent 7a1b476207
commit 4770cf5c3a
3 changed files with 37 additions and 0 deletions

19
detox/.footprint Normal file
View File

@ -0,0 +1,19 @@
drwxr-xr-x root/root etc/
-rw-r--r-- root/root etc/detoxrc
-rw-r--r-- root/root etc/detoxrc.sample
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/detox
-rwxr-xr-x root/root usr/bin/inline-detox
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/detox.1.gz
drwxr-xr-x root/root usr/man/man5/
-rw-r--r-- root/root usr/man/man5/detox.tbl.5.gz
-rw-r--r-- root/root usr/man/man5/detoxrc.5.gz
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/detox/
-rw-r--r-- root/root usr/share/detox/iso8859_1.tbl
-rw-r--r-- root/root usr/share/detox/iso8859_1.tbl.sample
-rw-r--r-- root/root usr/share/detox/unicode.tbl
-rw-r--r-- root/root usr/share/detox/unicode.tbl.sample

1
detox/.md5sum Normal file
View File

@ -0,0 +1 @@
da34c6bc3c68ce2fb008e25066e72927 detox-1.2.0.tar.bz2

17
detox/Pkgfile Normal file
View File

@ -0,0 +1,17 @@
# Description: utility designed to clean up filenames
# URL: http://detox.sourceforge.net/
# Maintainer: Bartlomiej Palmowski, rotwang at crux dot org dot pl
# Depends on:
name=detox
version=1.2.0
release=1
source=(http://dl.sourceforge.net/project/$name/$name/$version/$name-$version.tar.bz2)
build() {
mkdir -p $PKG/usr/bin $PKG/etc $PKG/usr/man $PKG/usr/share/detox
cd $name-$version
./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/man
make
make DESTDIR=$PKG install
}