diff options
author | Danny Rawlins <romster@shortcircuit.net.au> | 2008-05-15 00:57:17 +1000 |
---|---|---|
committer | Danny Rawlins <romster@shortcircuit.net.au> | 2008-05-15 01:45:13 +1000 |
commit | 51b74734bf19baff265b9fe81343e44963e78cec (patch) | |
tree | c1261eec384a2914d4df6f043f1dc740ce1e791e /enchant | |
parent | 850d58157e7816873c3a61d76d53419e0eb80d03 (diff) | |
download | contrib-51b74734bf19baff265b9fe81343e44963e78cec.tar.gz contrib-51b74734bf19baff265b9fe81343e44963e78cec.tar.xz |
enchant: 1.3.0 -> 1.4.2
Diffstat (limited to 'enchant')
-rw-r--r-- | enchant/.footprint | 10 | ||||
-rw-r--r-- | enchant/.md5sum | 2 | ||||
-rw-r--r-- | enchant/Pkgfile | 15 |
3 files changed, 15 insertions, 12 deletions
diff --git a/enchant/.footprint b/enchant/.footprint index 48baef98a..e9b07787f 100644 --- a/enchant/.footprint +++ b/enchant/.footprint @@ -9,20 +9,16 @@ drwxr-xr-x root/root usr/include/enchant/ -rw-r--r-- root/root usr/include/enchant/enchant.h drwxr-xr-x root/root usr/lib/ drwxr-xr-x root/root usr/lib/enchant/ --rw-r--r-- root/root usr/lib/enchant/libenchant_aspell.a -rwxr-xr-x root/root usr/lib/enchant/libenchant_aspell.la -rwxr-xr-x root/root usr/lib/enchant/libenchant_aspell.so --rw-r--r-- root/root usr/lib/enchant/libenchant_ispell.a -rwxr-xr-x root/root usr/lib/enchant/libenchant_ispell.la -rwxr-xr-x root/root usr/lib/enchant/libenchant_ispell.so --rw-r--r-- root/root usr/lib/enchant/libenchant_myspell.a -rwxr-xr-x root/root usr/lib/enchant/libenchant_myspell.la -rwxr-xr-x root/root usr/lib/enchant/libenchant_myspell.so --rw-r--r-- root/root usr/lib/libenchant.a -rwxr-xr-x root/root usr/lib/libenchant.la -lrwxrwxrwx root/root usr/lib/libenchant.so -> libenchant.so.1.3.0 -lrwxrwxrwx root/root usr/lib/libenchant.so.1 -> libenchant.so.1.3.0 --rwxr-xr-x root/root usr/lib/libenchant.so.1.3.0 +lrwxrwxrwx root/root usr/lib/libenchant.so -> libenchant.so.1.4.2 +lrwxrwxrwx root/root usr/lib/libenchant.so.1 -> libenchant.so.1.4.2 +-rw-r--r-- root/root usr/lib/libenchant.so.1.4.2 drwxr-xr-x root/root usr/lib/pkgconfig/ -rw-r--r-- root/root usr/lib/pkgconfig/enchant.pc drwxr-xr-x root/root usr/man/ diff --git a/enchant/.md5sum b/enchant/.md5sum index ca6ac2b50..fe038cc27 100644 --- a/enchant/.md5sum +++ b/enchant/.md5sum @@ -1 +1 @@ -f7edafae875616b83e7a17a7e5c2d585 enchant-1.3.0.tar.gz +fe4558269ff59f569ab9581c907d58cb enchant-1.4.2.tar.gz diff --git a/enchant/Pkgfile b/enchant/Pkgfile index 8e667af58..06bc23975 100644 --- a/enchant/Pkgfile +++ b/enchant/Pkgfile @@ -5,14 +5,21 @@ # Depends on: aspell glib name=enchant -version=1.3.0 +version=1.4.2 release=1 source=(http://www.abisource.com/downloads/enchant/$version/enchant-$version.tar.gz) build() { - cd enchant-$version - ./configure --prefix=/usr - make + cd enchant-$version + + ./configure \ + --prefix=/usr \ + --mandir=/usr/man \ + --disable-static \ + --disable-dependency-tracking + + make make DESTDIR=$PKG install + chmod a-x $PKG/usr/lib/*.so } |