diff options
author | Síle Ekaterin Liszka <sheila@vulpine.house> | 2025-06-28 19:00:40 -0700 |
---|---|---|
committer | Síle Ekaterin Liszka <sheila@vulpine.house> | 2025-06-29 14:58:51 -0700 |
commit | 9f15fe63839a4a0e94618106662a25771902786b (patch) | |
tree | a05001a52c31c8c9b8df97d359d8bc1507ac3790 | |
parent | eeeb2f8d81b6cec19288ea30422de496a5eb9d4a (diff) | |
download | packages-9f15fe63839a4a0e94618106662a25771902786b.tar.gz packages-9f15fe63839a4a0e94618106662a25771902786b.tar.bz2 packages-9f15fe63839a4a0e94618106662a25771902786b.tar.xz packages-9f15fe63839a4a0e94618106662a25771902786b.zip |
user/volume_key: use slibtool
-rw-r--r-- | user/volume_key/APKBUILD | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/user/volume_key/APKBUILD b/user/volume_key/APKBUILD index 69da50792..01dc924d6 100644 --- a/user/volume_key/APKBUILD +++ b/user/volume_key/APKBUILD @@ -11,13 +11,15 @@ license="GPL-2.0+" depends="" checkdepends="nss-tools" makedepends="cryptsetup-dev glib-dev gpgme-dev nss-dev python3-dev - util-linux-dev autoconf automake libtool" + util-linux-dev autoconf automake slibtool" subpackages="$pkgname-dev $pkgname-doc $pkgname-lang py-$pkgname:py" source="https://releases.pagure.org/volume_key/volume_key-$pkgver.tar.xz" prepare() { - autoreconf -i #998 default_prepare + export LIBTOOL="slibtool" + export LIBTOOLIZE="slibtoolize" + autoreconf -if #998 } build() { |