diff options
author | Juergen Daubert <jue@jue.li> | 2010-11-15 18:30:27 +0100 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2010-11-15 18:30:27 +0100 |
commit | c859cfbc970eaea51de6ce90baa5f9c1298952b6 (patch) | |
tree | 7a1af50001086e7fa4002d3302acf5632523c67c /stfl | |
parent | ac0be9c182cfc73fb8e19b13ada1adeaee44fc8e (diff) | |
download | opt-c859cfbc970eaea51de6ce90baa5f9c1298952b6.tar.gz opt-c859cfbc970eaea51de6ce90baa5f9c1298952b6.tar.xz |
stfl: initial release
Diffstat (limited to 'stfl')
-rw-r--r-- | stfl/.footprint | 9 | ||||
-rw-r--r-- | stfl/.md5sum | 1 | ||||
-rw-r--r-- | stfl/Pkgfile | 15 |
3 files changed, 25 insertions, 0 deletions
diff --git a/stfl/.footprint b/stfl/.footprint new file mode 100644 index 000000000..eb459dfd3 --- /dev/null +++ b/stfl/.footprint @@ -0,0 +1,9 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/include/ +-rw-r--r-- root/root usr/include/stfl.h +drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/libstfl.a +lrwxrwxrwx root/root usr/lib/libstfl.so -> libstfl.so.0.21 +-rw-r--r-- root/root usr/lib/libstfl.so.0.21 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/stfl.pc diff --git a/stfl/.md5sum b/stfl/.md5sum new file mode 100644 index 000000000..568798ad7 --- /dev/null +++ b/stfl/.md5sum @@ -0,0 +1 @@ +888502c3f332a0ee66e490690d79d404 stfl-0.21.tar.gz diff --git a/stfl/Pkgfile b/stfl/Pkgfile new file mode 100644 index 000000000..15b669724 --- /dev/null +++ b/stfl/Pkgfile @@ -0,0 +1,15 @@ +# Description: Library which implements a curses-based widget set for text terminals +# URL: http://www.clifford.at/stfl +# Maintainer: Juergen Daubert, jue at crux dot nu +# Depends on: ncurses + +name=stfl +version=0.21 +release=1 +source=(http://www.clifford.at/$name/$name-$version.tar.gz) + +build () { + cd $name-$version + sed -i 's|ncursesw/||' stfl_internals.h + make prefix=/usr FOUND_SWIG=0 DESTDIR=$PKG install +} |