diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-09-09 18:45:24 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-09-09 19:58:49 -0300 |
commit | d1c20cb3ddfcd1b4ba08d61e4f916b836ca000b4 (patch) | |
tree | 8849c9f44556f7ace42db41c5b37273929ed35bd | |
parent | 5f3dbfd8023be57a500a4be7f17862e0f510e7c6 (diff) | |
download | aports-d1c20cb3ddfcd1b4ba08d61e4f916b836ca000b4.tar.bz2 aports-d1c20cb3ddfcd1b4ba08d61e4f916b836ca000b4.tar.xz |
community/libpsl: use python3
-rw-r--r-- | community/libpsl/APKBUILD | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/community/libpsl/APKBUILD b/community/libpsl/APKBUILD index d1e4476908..05d8396d17 100644 --- a/community/libpsl/APKBUILD +++ b/community/libpsl/APKBUILD @@ -6,10 +6,15 @@ pkgdesc="C library for the Publix Suffix List" url="https://rockdaboot.github.io/libpsl" arch="all" license="MIT" -makedepends="python2" +makedepends="python3" subpackages="$pkgname-static $pkgname-dev $pkgname-doc" source="https://github.com/rockdaboot/libpsl/releases/download/libpsl-$pkgver/libpsl-$pkgver.tar.gz" +prepare() { + default_prepare + sed -i 's|env python|env python3|g' src/psl-make-dafsa +} + build() { ./configure \ --build=$CBUILD \ |