author | Daniel Griffiths
<ghost1227@archlinux.us> 2010-02-02 05:43:13 UTC |
committer | Daniel Griffiths
<ghost1227@archlinux.us> 2010-02-02 05:43:13 UTC |
parent | 10675d2516884ef97af15d194ac8589da3cd1595 |
PKGBUILD | +7 | -2 |
diff --git a/PKGBUILD b/PKGBUILD index 0ec9845..4078447 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -12,11 +12,16 @@ depends=('python') makedepends=('unzip' 'setuptools') source=(http://html5lib.googlecode.com/files/html5lib-${pkgver}.zip LICENSE) +md5sums=('f0981fcec3d69789f12f52779c55fa29' + '838c366f69b72c5df05c96dff79b35f2') build() { + /bin/true +} + +package() { cd ${srcdir}/html5lib-${pkgver} + python setup.py install --root=${pkgdir} || return 1 install -dm755 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE } -md5sums=('f0981fcec3d69789f12f52779c55fa29' - '838c366f69b72c5df05c96dff79b35f2')