diff --git a/.SRCINFO b/.SRCINFO index feda7a4db774..e89d59b12dc5 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,10 +1,10 @@ pkgbase = python-pies pkgdesc = The simplest (and tastiest) way to write one program that runs on both Python 2.6+ and Python 3. pkgver = 2.6.1 - pkgrel = 1 + pkgrel = 2 url = https://github.com/timothycrosley/pies arch = any - license = GPL2 + license = MIT makedepends = python-setuptools depends = python source = python-pies-2.6.1.tar.gz::https://github.com/timothycrosley/pies/archive/2.6.1.tar.gz diff --git a/PKGBUILD b/PKGBUILD index 128919e68a61..49dde11cf100 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,11 +4,11 @@ pkgname=python-pies _pkgname=pies pkgver=2.6.1 -pkgrel=1 +pkgrel=2 pkgdesc="The simplest (and tastiest) way to write one program that runs on both Python 2.6+ and Python 3." arch=('any') url="https://github.com/timothycrosley/pies" -license=('GPL2') +license=('MIT') depends=('python') makedepends=(python-setuptools) source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz") @@ -17,5 +17,7 @@ md5sums=('65312c468735c1d7b18c722b2ecd47be') package() { cd "$srcdir/$_pkgname-$pkgver" python setup.py install --root="$pkgdir/" --optimize=1 + install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" + }