summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Mizrahi <alan+crux@mizrahi.com.ve>2013-03-11 12:24:20 +0900
committerAlan Mizrahi <alan+crux@mizrahi.com.ve>2013-03-11 12:24:20 +0900
commitdb3cb06ee2f69d76c7306702ec52778e77aca0c3 (patch)
treeb2e3f4dd47e8afe342df0e89a1995e58b3093de4
parent270d260e05595e7e481094179573c156f400de68 (diff)
downloadcontrib-db3cb06ee2f69d76c7306702ec52778e77aca0c3.tar.gz
contrib-db3cb06ee2f69d76c7306702ec52778e77aca0c3.tar.xz
lrzsz: Fixed installation issue, renamed binaries to the standard names
-rw-r--r--lrzsz/.footprint20
-rw-r--r--lrzsz/Pkgfile13
2 files changed, 22 insertions, 11 deletions
diff --git a/lrzsz/.footprint b/lrzsz/.footprint
index 3b10d28d4..6b58367e6 100644
--- a/lrzsz/.footprint
+++ b/lrzsz/.footprint
@@ -1,12 +1,16 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
--rwxr-xr-x root/root usr/bin/lrb
--rwxr-xr-x root/root usr/bin/lrx
--rwxr-xr-x root/root usr/bin/lrz
--rwxr-xr-x root/root usr/bin/lsb
--rwxr-xr-x root/root usr/bin/lsx
--rwxr-xr-x root/root usr/bin/lsz
+lrwxrwxrwx root/root usr/bin/rb -> rz
+lrwxrwxrwx root/root usr/bin/rx -> rz
+-rwxr-xr-x root/root usr/bin/rz
+lrwxrwxrwx root/root usr/bin/sb -> sz
+lrwxrwxrwx root/root usr/bin/sx -> sz
+-rwxr-xr-x root/root usr/bin/sz
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
--rw-r--r-- root/root usr/man/man1/lrz.1.gz
--rw-r--r-- root/root usr/man/man1/lsz.1.gz
+lrwxrwxrwx root/root usr/man/man1/rb.1.gz -> rz.1.gz
+lrwxrwxrwx root/root usr/man/man1/rx.1.gz -> rz.1.gz
+-rwxr-xr-x root/root usr/man/man1/rz.1.gz
+lrwxrwxrwx root/root usr/man/man1/sb.1.gz -> sz.1.gz
+lrwxrwxrwx root/root usr/man/man1/sx.1.gz -> sz.1.gz
+-rwxr-xr-x root/root usr/man/man1/sz.1.gz
diff --git a/lrzsz/Pkgfile b/lrzsz/Pkgfile
index 0252fbc6c..91e11f883 100644
--- a/lrzsz/Pkgfile
+++ b/lrzsz/Pkgfile
@@ -5,12 +5,19 @@
name=lrzsz
version=0.12.20
-release=1
+release=2
source=(http://www.ohse.de/uwe/releases/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr --disable-nls
- make -j 1
- make DESTDIR=$PKG install
+ make
+ for d in r s; do
+ install -D src/l${d}z $PKG/usr/bin/${d}z
+ install -D man/l${d}z.1 $PKG/usr/man/man1/${d}z.1
+ for p in b x; do
+ ln -s ${d}z $PKG/usr/bin/${d}${p}
+ ln -s ${d}z.1.gz $PKG/usr/man/man1/${d}${p}.1.gz
+ done
+ done
}

Generated by cgit