diff options
author | Omar Vega Ramos <ovruni@gnu.org.pe> | 2017-05-24 02:07:21 -0500 |
---|---|---|
committer | Omar Vega Ramos <ovruni@gnu.org.pe> | 2017-05-24 02:07:21 -0500 |
commit | 3d10b35c84a73eabdf53e3652374583a342b1c81 (patch) | |
tree | aae0151148a0fc0b734401d0c125bd1d657af86f /pcr/laszip | |
parent | ba582433626989c55269ae8a2aca8182d4820774 (diff) | |
download | abslibre-3d10b35c84a73eabdf53e3652374583a342b1c81.tar.gz abslibre-3d10b35c84a73eabdf53e3652374583a342b1c81.tar.bz2 abslibre-3d10b35c84a73eabdf53e3652374583a342b1c81.zip |
Removing laszip: This package is in [community] repo
Diffstat (limited to 'pcr/laszip')
-rw-r--r-- | pcr/laszip/PKGBUILD | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/pcr/laszip/PKGBUILD b/pcr/laszip/PKGBUILD deleted file mode 100644 index 107966e3a..000000000 --- a/pcr/laszip/PKGBUILD +++ /dev/null @@ -1,41 +0,0 @@ -# Contributor (Arch) : Maciej Sieczka <msieczka at sieczka dot org> -# Maintainer (Parabola) : Aurélien DESBRIÈRES <aurelien@hackers.camp> - -pkgname='laszip' -pkgver='2.2.0' -pkgrel='1' -pkgdesc='ASPRS LAS lossless compression library.' -arch=('i686' 'x86_64') -url='http://www.laszip.org' -license=('LGPL2.1') -provides=("$pkgname") -source=("http://download.osgeo.org/laszip/laszip-src-2.2.0.tar.bz2") -md5sums=('93194700623f6aca470454299361e89d') - -build() { - cd "${srcdir}/laszip-src-2.2.0" - - msg 'Configuring build...' - ./configure --prefix='/usr' --includedir="/usr/include/${pkgname}" -# mkdir makefiles -# cd makefiles/ -# cmake -D CMAKE_INSTALL_PREFIX="${pkgdir}/usr" -G 'Unix Makefiles' ../ - - # To provide a usefull stacktrace: - # - # CFLAGS="-O0 -ggdb -Wall -Werror-implicit-function-declaration -fexceptions" - # CXXFLAGS="-O0 -ggdb -Wall -Werror-implicit-function-declaration -fexceptions" - # options=(!strip) - # Not sure if -Werror-implicit-function-declaration -fexceptions should really go to CXXFLAGS. - # Let me know if you know. - - msg 'Building...' - make -} - -package() { - cd "${srcdir}/laszip-src-2.2.0" - make DESTDIR="$pkgdir" install -# cd "${srcdir}/${pkgname}-${pkgver}/makefiles" -# make install -} |