Add lgogdownloader

This commit is contained in:
moparisthebest
2017-01-07 19:56:19 -05:00
parent 3925cdea57
commit c652a2840e
4 changed files with 114 additions and 0 deletions

21
src/htmlcxx/.SRCINFO Normal file
View File

@@ -0,0 +1,21 @@
# Generated by mksrcinfo v8
# Sun Jan 10 13:59:15 UTC 2016
pkgbase = htmlcxx
pkgdesc = A simple non-validating CSS1 and HTML parser for C++.
pkgver = 0.86
pkgrel = 1
url = http://htmlcxx.sourceforge.net/
arch = i686
arch = x86_64
license = LGPL
provides = htmlcxx
provides = libhtmlcxx
provides = libcss_parser
conflicts = htmlcxx
conflicts = libhtmlcxx
conflicts = libcss_parser
source = http://downloads.sourceforge.net/project/htmlcxx/htmlcxx/0.86/htmlcxx-0.86.tar.gz
sha256sums = 07542b5ea2442143b125ba213b6823ff4a23fff352ecdd84bbebe1d154f4f5c1
pkgname = htmlcxx

29
src/htmlcxx/PKGBUILD Normal file
View File

@@ -0,0 +1,29 @@
# Maintainer: Timothée Girard <aur@timotheegirard.com>
# Contributor: Eduardo Sánchez Muñoz <eduardosanchezmunoz@gmail.com>
pkgname=htmlcxx
pkgver=0.86
pkgrel=1
pkgdesc="A simple non-validating CSS1 and HTML parser for C++."
arch=('i686' 'x86_64')
url="http://htmlcxx.sourceforge.net/"
license=('LGPL')
depends=()
makedepends=()
conflicts=('htmlcxx' 'libhtmlcxx' 'libcss_parser')
provides=('htmlcxx' 'libhtmlcxx' 'libcss_parser')
source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz")
sha256sums=('07542b5ea2442143b125ba213b6823ff4a23fff352ecdd84bbebe1d154f4f5c1')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
LDFLAGS="$LDFLAGS -Wl,--no-as-needed"
./configure --prefix=/usr
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
}