commit a4a9e7b
chld
·
2026-09-11 22:13:08 +0000 UTC
parent 3dd38e9
iovseka: init
4 files changed,
+57,
-0
+6,
-0
1@@ -0,0 +1,6 @@
2+name: iovsela
3+description: versatile typeface for code, from code
4+license: SIL Open Font
5+upstream: https://github.com/be5invis/iovseka
6+version: 34.8.1
7+maintainer:
+14,
-0
1@@ -0,0 +1,14 @@
2+#!/bin/sh -ue
3+NAME=iovseka
4+VERSION=34.8.1
5+RELEASE=1
6+SOURCE="https://github.com/be5invis/Iosevka/releases/download/v${VERSION}/PkgTTF-Iosevka-${VERSION}.zip"
7+
8+build(){
9+ mkdir -p $PKG/$PREFIX/share/fonts/${NAME}/
10+
11+ for i in *.ttf; do
12+ cp -v $i $PKG/$PREFIX/share/fonts/${NAME}/
13+ done
14+}
15+. ${0%/*}/../../libsh/libdmake.sh
+6,
-0
1@@ -0,0 +1,6 @@
2+name: libunistring
3+description: gnu shit irolwk lol
4+license: GPL-3.0-or-later
5+upstream:
6+version: 1.4
7+maintainer: chld
+31,
-0
1@@ -0,0 +1,31 @@
2+#!/bin/sh -ue
3+NAME=gdb
4+VERSION=15
5+RELEASE=1
6+SOURCE="https://ftp.gnu.org/gnu/${NAME}/${NAME}-${VERSION}.tar.xz"
7+BUILD_STYLE=configure
8+BUILD_OPT=" --prefix=/
9+ --bindir=/bin
10+ --sbindir=/bin
11+ --libdir=/lib
12+ --includedir=/include
13+ --sysconfdir=/etc
14+ --enable-static
15+ --disable-shared
16+ --without-python
17+ --without-guile
18+ --without-curses
19+ --without-lzma
20+ --without-zlib
21+ --disable-gdbserver
22+ --disable-lto
23+ --without-gnu-ld
24+ --disable-libunistring
25+ --enable-dependency-tracking
26+ --enable-static
27+ --disable-libtool-loc
28+ --enable-jit=no
29+ --disable-nls
30+ --enable-mini-gmp
31+ --without-libiconv"
32+. ${0%/*}/../../libsh/libdmake.sh