Merge branch 'master' of ssh://git.karchnu.fr:2202/WeirdOS/recipes
commit
495ad4b336
|
@ -1,20 +1,20 @@
|
|||
name: curl
|
||||
version: 7.65.3
|
||||
release: 1
|
||||
release: 2
|
||||
sources: https://curl.haxx.se/download/curl-%{version}.tar.gz
|
||||
build-dependencies: make, openssl-dev
|
||||
|
||||
dirname: %{name}-%{version}
|
||||
@configure
|
||||
cd %{dirname}
|
||||
cd %{name}-%{version}
|
||||
./configure \
|
||||
--enable-ipv6 \
|
||||
--enable-unix-sockets \
|
||||
--enable-static \
|
||||
--enable-openssl \
|
||||
--without-libidn \
|
||||
--without-libidn2 \
|
||||
--with-nghttp2 \
|
||||
--disable-ldap \
|
||||
--with-pic \
|
||||
--without-libssh2 # https://bugs.alpinelinux.org/issues/10222
|
||||
--prefix="%{prefix}" \
|
||||
--enable-ipv6 \
|
||||
--enable-unix-sockets \
|
||||
--enable-static \
|
||||
--enable-openssl \
|
||||
--without-libidn \
|
||||
--without-libidn2 \
|
||||
--with-nghttp2 \
|
||||
--disable-ldap \
|
||||
--with-pic \
|
||||
--without-libssh2 # https://bugs.alpinelinux.org/issues/10222
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
name: llvm
|
||||
version: 8.0.1
|
||||
release: 1
|
||||
release: 2
|
||||
sources: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{version}/llvm-%{version}.src.tar.xz
|
||||
dependencies:
|
||||
- libffi
|
||||
|
@ -9,7 +9,7 @@ dependencies:
|
|||
mkdir %{name}-%{version}
|
||||
cd %{name}-%{version} && \
|
||||
cmake ../llvm-%{version}.src \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr/weirdos/%{name} \
|
||||
-DCMAKE_INSTALL_PREFIX="%{prefix}" \
|
||||
-DLLVM_BUILD_DOCS=OFF\
|
||||
-DLLVM_BUILD_EXAMPLES=OFF \
|
||||
-DLLVM_BUILD_EXTERNAL_COMPILER_RT=ON \
|
||||
|
|
|
@ -2,25 +2,48 @@ name: musl
|
|||
version: 1.1.23
|
||||
release: 3
|
||||
sources: https://www.musl-libc.org/releases/musl-%{version}.tar.gz
|
||||
options:
|
||||
- configure: --prefix=/usr --libdir=/lib --syslibdir=/lib --enable-shared --enable-static
|
||||
|
||||
# Edit this if you somehow need to build a prefixed version of musl.
|
||||
prefix: /
|
||||
|
||||
@configure
|
||||
cd %{name}-%{version}
|
||||
|
||||
libdir=/lib
|
||||
prefix=/usr/weirdos
|
||||
if [ "%{prefix}" != "/" ]; then
|
||||
prefix="%{prefix}"
|
||||
libdir="%{prefix}/lib"
|
||||
fi
|
||||
|
||||
./configure \
|
||||
--prefix=$prefix \
|
||||
--libdir=$libdir \
|
||||
--syslibdir=$libdir \
|
||||
--enable-shared \
|
||||
--enable-static
|
||||
|
||||
@install
|
||||
cd %{name}-%{version}
|
||||
|
||||
libdir=/lib
|
||||
if [ "%{prefix}" != "/" ]; then
|
||||
libdir="%{prefix}/lib"
|
||||
fi
|
||||
|
||||
make DESTDIR="%{pkg}" install
|
||||
|
||||
# FIXME: This’ll have to eventually be more automated.
|
||||
# FIXME: That path has to be edited on other architectures.
|
||||
mkdir -p %{pkg}/etc
|
||||
{
|
||||
echo /lib
|
||||
echo $libdir
|
||||
echo /usr/weirdos/lib
|
||||
echo /usr/bad/lib
|
||||
echo /usr/local/lib
|
||||
} > %{pkg}/etc/ld-musl-x86_64.path
|
||||
|
||||
for lib in libm libpthread librt libdl; do
|
||||
ln -s /lib/libc.so "%{pkg}/lib/${lib}.so"
|
||||
ln -s $libdir/libc.so "%{pkg}$libdir/${lib}.so"
|
||||
done
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ build-dependencies: crystal, spec-parser
|
|||
# FIXME: bsdtar should be split out so that we depend only on it.
|
||||
# Busybox is required mostly for `wget`.
|
||||
# abuild and zsh are required for assemble-apk.
|
||||
dependencies: gc, libevent, pcre, libarchive, busybox, zsh, abuild
|
||||
dependencies: gc, libevent, pcre, libarchive, busybox, zsh, abuild, gnutar
|
||||
|
||||
dirname: package
|
||||
@configure
|
||||
|
|
|
@ -0,0 +1,17 @@
|
|||
packager: Mickaël Bauer <mickael.bauer7@gmail.com>
|
||||
name: vim
|
||||
version: 8.1.1963
|
||||
description: Improved vi-style text editor
|
||||
url: https://www.vim.org
|
||||
license: charityware
|
||||
sources: https://github.com/${name}/${name}/archive/v${version} -> %{name}-%{version}.tar.gz
|
||||
dependencies:
|
||||
- ncurses
|
||||
|
||||
options:
|
||||
- configure: --with-tlib=ncursesw
|
||||
@install
|
||||
cd %{name}-%{version}
|
||||
make DESTDIR=%{pkg} install
|
||||
rm %{pkg}%{prefix}/bin/xxd
|
||||
|
Reference in New Issue