diff options
author | tnut <tnut at nutyx dot com> | 2012-05-02 21:39:43 +0200 |
---|---|---|
committer | tnut <tnut at nutyx dot com> | 2012-05-02 21:39:43 +0200 |
commit | 39c6268f80588f03028da4b15283bdc920745d09 (patch) | |
tree | 20a48dbd1bbc534c59c1473ab762c0037da0a0e2 | |
parent | a6d3f46590188739a46dd5dd20a08fa8c84c036f (diff) | |
download | nutyx-extra-39c6268f80588f03028da4b15283bdc920745d09.tar.gz nutyx-extra-39c6268f80588f03028da4b15283bdc920745d09.tar.bz2 nutyx-extra-39c6268f80588f03028da4b15283bdc920745d09.tar.xz nutyx-extra-39c6268f80588f03028da4b15283bdc920745d09.zip |
libreoffice, correction extraction sources
-rw-r--r-- | libreoffice/Pkgfile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/libreoffice/Pkgfile b/libreoffice/Pkgfile index 55b22a708..6ebdfeed1 100644 --- a/libreoffice/Pkgfile +++ b/libreoffice/Pkgfile @@ -13,10 +13,14 @@ source=(http://download.documentfoundation.org/libreoffice/src/3.5.2/$name-core- http://download.documentfoundation.org/libreoffice/src/3.5.2/$name-help-$version.tar.xz http://download.documentfoundation.org/libreoffice/src/3.5.2/$name-translations-$version.tar.xz ) build() { + + rm -r $name-translations-$version + rm -r $name-help-$version + rm -r $name-dictionaries-$version cd $name-core-$version - tar -xf ../$name-translations-$version.tar.xz --strip-components=1 - tar -xf ../$name-help-$version.tar.xz --strip-components=1 - tar -xf ../$name-dictionaries-$version.tar.xz --strip-components=1 + tar -xf $PKGMK_SOURCE_DIR/$name-translations-$version.tar.xz --strip-components=1 + tar -xf $PKGMK_SOURCE_DIR/$name-help-$version.tar.xz --strip-components=1 + tar -xf $PKGMK_SOURCE_DIR/$name-dictionaries-$version.tar.xz --strip-components=1 sed -i '/$Prepend/s:^[^#]:# &:' \ i18npool/source/breakiterator/data/char{,_in}.txt ./autogen.sh --prefix=/usr \ |