mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
492f7132d2
- Replaced /Root with - Improved documentation. - Removed a few typos. - Replaced with - Added brackets in some cases. Most of the changes were reviewed and applied manually.
16 lines
621 B
Bash
Executable file
16 lines
621 B
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port=libtool
|
|
version=2.4
|
|
useconfigure="true"
|
|
depends="bash sed"
|
|
files="https://ftpmirror.gnu.org/gnu/libtool/libtool-${version}.tar.xz libtool-${version}.tar.xz
|
|
https://ftpmirror.gnu.org/gnu/libtool/libtool-${version}.tar.xz.sig libtool-${version}.tar.xz.sig
|
|
https://ftpmirror.gnu.org/gnu/gnu-keyring.gpg gnu-keyring.gpg"
|
|
auth_type="sig"
|
|
auth_opts="--keyring ./gnu-keyring.gpg libtool-${version}.tar.xz.sig"
|
|
configopts="--prefix=/usr/local"
|
|
|
|
post_install() {
|
|
mkdir -p "${SERENITY_INSTALL_ROOT}/usr/bin"
|
|
ln -sf /usr/local/bin/sed "${SERENITY_INSTALL_ROOT}/usr/bin/sed"
|
|
}
|