new bblfs: dev-libs/popt-1.19

This commit is contained in:
2025-12-25 14:44:03 -05:00
parent e7effdf182
commit 27502f9202
2 changed files with 34 additions and 1 deletions

View File

@@ -15,11 +15,17 @@ Warning: `leaf` won't deal with the dependence relation, and currently won't che
## BLFS order ## BLFS order
Those can be installed directly:
```
dev-libs/libunistring dev-libs/popt dev-libs/libtasn1 app-arch/libarchive
```
- `dev-libs/libunistring` -> `net-dns/libidn2` -> `net-libs/libpsl` -> `net-misc/wget` - `dev-libs/libunistring` -> `net-dns/libidn2` -> `net-libs/libpsl` -> `net-misc/wget`
- `dev-libs/libtasn1` -> `app-crypt/p11-kit` -> `app-misc/make-ca` - `dev-libs/libtasn1` -> `app-crypt/p11-kit` -> `app-misc/make-ca`
- `net-libs/libpsl`+`app-misc/make-ca` -> `net-misc/curl` - `net-libs/libpsl`+`app-misc/make-ca` -> `net-misc/curl`
- `libxml2` is not needed for `nghttp2` - `libxml2` is not needed for `nghttp2`
- `icu` is not needed for `libxml2` - `icu` is not needed for `libxml2`
- `net-misc/curl`+`app-arch/libarchive`+`dev-libs/libuv` -> `dev-build/cmake` - `net-misc/curl`+`app-arch/libarchive`+`dev-libs/libuv` -> `dev-build/cmake`
- `dev-db/sqlite` -> rebuild `dev-lang/python` - `app-arch/libarchive` -> `dev-db/sqlite` -> rebuild `dev-lang/python`
- `dev-python/six` -> `dev-debug/gdb` - `dev-python/six` -> `dev-debug/gdb`

View File

@@ -0,0 +1,27 @@
pkgname=popt
pkgver=1.19
pkgdesc="A commandline option parser"
arch=('x86_64')
homepage="https://github.com/rpm-software-management/popt"
license=('custom')
sources=("${pkgname}-${pkgver}.tar.gz")
urls=("https://ftp.osuosl.org/pub/rpm/popt/releases/popt-1.x/${sources[0]}")
md5sums=("eaa2135fddb6eb03f2c87ee1823e5a78")
src_prepare() {
tar -xf ${distdir}/${sources[0]} --strip-components=1
}
src_build() {
./configure --prefix=/usr --disable-static &&
make
}
src_check() {
make check
}
src_install() {
make DESTDIR="${pkgdir}" install
install -Dm644 COPYING "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
}