diff --git a/detox/.footprint b/detox/.footprint new file mode 100644 index 000000000..51f7bbf10 --- /dev/null +++ b/detox/.footprint @@ -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 diff --git a/detox/.md5sum b/detox/.md5sum new file mode 100644 index 000000000..11050a475 --- /dev/null +++ b/detox/.md5sum @@ -0,0 +1 @@ +da34c6bc3c68ce2fb008e25066e72927 detox-1.2.0.tar.bz2 diff --git a/detox/Pkgfile b/detox/Pkgfile new file mode 100644 index 000000000..ad8538313 --- /dev/null +++ b/detox/Pkgfile @@ -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 +}