first commit
This commit is contained in:
3
src/aalib/.gitignore
vendored
Normal file
3
src/aalib/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/aalib/changes.md
Normal file
2
src/aalib/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 1.4rc5
|
||||
First version
|
21
src/aalib/pkg.sh
Normal file
21
src/aalib/pkg.sh
Normal file
@ -0,0 +1,21 @@
|
||||
NAME="aalib"
|
||||
DESC="Library to render any graphic into ASCII Ar"
|
||||
VERSION="1.4rc5"
|
||||
FILES=("https://downloads.sourceforge.net/aa-project/aalib-$VERSION.tar.gz")
|
||||
HASHES=("9801095c42bba12edebd1902bcf0a990")
|
||||
DEPENDS=("slang" "gpm" "mkfontscale" "fonts")
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.gz
|
||||
cd $NAME-1.4.0
|
||||
|
||||
sed -i -e '/AM_PATH_AALIB,/s/AM_PATH_AALIB/[&]/' aalib.m4
|
||||
./configure --prefix=/usr \
|
||||
--infodir=/usr/share/info \
|
||||
--mandir=/usr/share/man \
|
||||
--with-ncurses=/usr \
|
||||
--disable-static
|
||||
make && make DESTDIR="$ROOTDIR" install
|
||||
|
||||
cd .. && rm -r $NAME-1.4.0
|
||||
}
|
3
src/accountsservice/.gitignore
vendored
Normal file
3
src/accountsservice/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/accountsservice/changes.md
Normal file
2
src/accountsservice/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 23.13.9
|
||||
First version
|
28
src/accountsservice/pkg.sh
Normal file
28
src/accountsservice/pkg.sh
Normal file
@ -0,0 +1,28 @@
|
||||
NAME="accountsservice"
|
||||
DESC="Provides a set of D-Bus interfaces for querying and manipulating user account information"
|
||||
VERSION="23.13.9"
|
||||
FILES=("https://www.freedesktop.org/software/accountsservice/accountsservice-$VERSION.tar.xz")
|
||||
HASHES=("03dccfe1b306b7ca19743e86d118e64d")
|
||||
DEPENDS=(
|
||||
"polkit" "gobject-introspection"
|
||||
)
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.xz
|
||||
cd $NAME-$VERSION
|
||||
|
||||
mv tests/dbusmock{,-tests}
|
||||
sed -e '/accounts_service\.py/s/dbusmock/dbusmock-tests/' \
|
||||
-i tests/test-libaccountsservice.py
|
||||
|
||||
mkdir build
|
||||
cd build
|
||||
|
||||
meson setup .. \
|
||||
--prefix=/usr \
|
||||
--buildtype=release \
|
||||
-Dadmin_group=adm
|
||||
ninja && DESTDIR="$ROOTDIR" ninja install
|
||||
|
||||
cd ../.. && rm -r $NAME-$VERSION
|
||||
}
|
3
src/adwaita-icon-theme/.gitignore
vendored
Normal file
3
src/adwaita-icon-theme/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/adwaita-icon-theme/changes.md
Normal file
2
src/adwaita-icon-theme/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 44.0
|
||||
First version
|
21
src/adwaita-icon-theme/pkg.sh
Normal file
21
src/adwaita-icon-theme/pkg.sh
Normal file
@ -0,0 +1,21 @@
|
||||
NAME="adwaita-icon-theme"
|
||||
DESC="Icon theme for GTK3 and GTK4 applications"
|
||||
VERSION="44.0"
|
||||
FILES=("https://download.gnome.org/sources/adwaita-icon-theme/44/adwaita-icon-theme-$VERSION.tar.xz")
|
||||
HASHES=("1abae78e6cd50d4055b5c88ffe8b56a5")
|
||||
DEPENDS=("hicolor-icon-theme")
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.xz
|
||||
cd $NAME-$VERSION
|
||||
|
||||
./configure --prefix=/usr
|
||||
make && make DESTDIR="$ROOTDIR" install
|
||||
|
||||
cd .. && rm -rf $NAME-$VERSION
|
||||
}
|
||||
|
||||
INSTALL(){
|
||||
update-icon-cache
|
||||
exit 0
|
||||
}
|
3
src/alabaster/.gitignore
vendored
Normal file
3
src/alabaster/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/alabaster/changes.md
Normal file
2
src/alabaster/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 0.7.13
|
||||
First version
|
16
src/alabaster/pkg.sh
Normal file
16
src/alabaster/pkg.sh
Normal file
@ -0,0 +1,16 @@
|
||||
NAME="alabaster"
|
||||
DESC="Theme for the sphinx documentation system"
|
||||
VERSION="0.7.13"
|
||||
FILES=("https://files.pythonhosted.org/packages/source/a/alabaster/alabaster-$VERSION.tar.gz")
|
||||
HASHES=("2e05a5f4fe5a8b95e5e576cbf4a5d503")
|
||||
DEPENDS=("python3")
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.gz
|
||||
cd $NAME-$VERSION
|
||||
|
||||
python3 -m build --wheel --skip-dependency-check --no-isolation
|
||||
PYTHONPATH=src python3 -m installer --destdir="$ROOTDIR" dist/*.whl
|
||||
|
||||
cd .. && rm -r $NAME-$VERSION
|
||||
}
|
3
src/alacritty/.gitignore
vendored
Normal file
3
src/alacritty/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/alacritty/changes.md
Normal file
2
src/alacritty/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 0.13.1
|
||||
First version
|
25
src/alacritty/pkg.sh
Normal file
25
src/alacritty/pkg.sh
Normal file
@ -0,0 +1,25 @@
|
||||
NAME="alacritty"
|
||||
DESC="Cross-platform, OpenGL terminal emulator"
|
||||
VERSION="0.13.1"
|
||||
FILES=("https://github.com/alacritty/alacritty/archive/refs/tags/v0.13.1.tar.gz")
|
||||
HASHES=("38a42e23e1e6faaa9e300347df3f7b58b6182908a701517aac6e296fbdf37451")
|
||||
DEPENDS=(
|
||||
"freetype" "fontconfig" "libxi" "ncurses"
|
||||
"libxi" "libxcursor" "libxkbcommon" "libxrandr"
|
||||
)
|
||||
|
||||
PACKAGE() {
|
||||
tar xf v$VERSION.tar.gz
|
||||
cd $NAME-$VERSION
|
||||
|
||||
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
|
||||
CARGO_INCREMENTAL=0 cargo build --release --locked --offline
|
||||
desktop-file-install -m 644 --dir "$ROOTDIR/usr/share/applications/" "extra/linux/Alacritty.desktop"
|
||||
install -D -m755 "target/release/alacritty" "$ROOTDIR/usr/bin/alacritty"
|
||||
install -D -m644 "extra/linux/org.alacritty.Alacritty.appdata.xml" "$ROOTDIR/usr/share/appdata/org.alacritty.Alacritty.appdata.xml"
|
||||
install -D -m644 "extra/completions/alacritty.bash" "$ROOTDIR/usr/share/bash-completion/completions/alacritty"
|
||||
install -D -m644 "extra/completions/_alacritty" "$ROOTDIR/usr/share/zsh/site-functions/_alacritty"
|
||||
install -D -m644 "extra/logo/alacritty-term.svg" "$ROOTDIR/usr/share/pixmaps/Alacritty.svg"
|
||||
|
||||
cd .. && rm -r $NAME-$VERSION
|
||||
}
|
3
src/alsa-lib/.gitignore
vendored
Normal file
3
src/alsa-lib/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/alsa-lib/changes.md
Normal file
2
src/alsa-lib/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 1.2.9
|
||||
First version
|
16
src/alsa-lib/pkg.sh
Normal file
16
src/alsa-lib/pkg.sh
Normal file
@ -0,0 +1,16 @@
|
||||
NAME="alsa-lib"
|
||||
DESC="ALSA library used by programs"
|
||||
VERSION="1.2.9"
|
||||
FILES=("https://www.alsa-project.org/files/pub/lib/alsa-lib-$VERSION.tar.bz2")
|
||||
HASHES=("d29f5ebe9a4ff1be70508ecbf6655318")
|
||||
DEPENDS=()
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.bz2
|
||||
cd $NAME-$VERSION
|
||||
|
||||
./configure && make
|
||||
make DESTDIR=$ROOTDIR install
|
||||
|
||||
cd .. && rm -rf $NAME-$VERSION
|
||||
}
|
3
src/alsa-utils/.gitignore
vendored
Normal file
3
src/alsa-utils/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/alsa-utils/changes.md
Normal file
2
src/alsa-utils/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 1.2.11
|
||||
First version
|
21
src/alsa-utils/pkg.sh
Normal file
21
src/alsa-utils/pkg.sh
Normal file
@ -0,0 +1,21 @@
|
||||
NAME="alsa-utils"
|
||||
DESC="ALSA utils for managing ALSA configurations"
|
||||
VERSION="1.2.11"
|
||||
FILES=("https://www.alsa-project.org/files/pub/utils/alsa-utils-$VERSION.tar.bz2")
|
||||
HASHES=("5ce76807b53357584bfb4ace5acfdac4db9168ffaf5cdd1e499738eec046c36112bf84a99970f66368063a9baf73bad93af2d439630572f3eba5c9321071172d")
|
||||
DEPENDS=("alsa-lib" "ncurses")
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.bz2
|
||||
cd $NAME-$VERSION
|
||||
|
||||
./configure --prefix=/usr \
|
||||
--disable-alsaconf \
|
||||
--sbindir=/usr/bin \
|
||||
--with-udev-rules-dir=/usr/lib/udev/rules.d \
|
||||
--with-systemdsystemunitdir=/usr/lib/systemd/system
|
||||
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
|
||||
make && make DESTDIR=$ROOTDIR install
|
||||
|
||||
cd .. && rm -rf $NAME-$VERSION
|
||||
}
|
3
src/arc-gtk-theme/.gitignore
vendored
Normal file
3
src/arc-gtk-theme/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/arc-gtk-theme/changes.md
Normal file
2
src/arc-gtk-theme/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 20221218
|
||||
First version
|
29
src/arc-gtk-theme/pkg.sh
Normal file
29
src/arc-gtk-theme/pkg.sh
Normal file
@ -0,0 +1,29 @@
|
||||
NAME="arc-gtk-theme"
|
||||
DESC="Flat theme with transparent elements for GTK 2,3,4 and Gnome-Shell"
|
||||
VERSION="20221218"
|
||||
FILES=("https://github.com/jnsh/arc-theme/releases/download/$VERSION/arc-theme-$VERSION.tar.xz")
|
||||
HASHES=("5a84b717de022c673c6af260381542365550f629f43ae99c7ab8b22b4c09024403a1bc06279b40d3560e86d9810683c2e8337799a4cc67ef7aeb93223b5f56a1")
|
||||
DEPENDS=("arc-icon-theme")
|
||||
|
||||
PACKAGE() {
|
||||
tar xf arc-theme-$VERSION.tar.xz
|
||||
cd arc-theme-$VERSION
|
||||
|
||||
meson --prefix=/usr build \
|
||||
-Dcinnamon_version="5.6" \
|
||||
-Dgnome_shell_version="44" \
|
||||
-Dgnome_shell_gresource=true
|
||||
meson compile -C build
|
||||
|
||||
meson --prefix=/usr build-solid \
|
||||
-Dcinnamon_version="5.6" \
|
||||
-Dgnome_shell_version="44" \
|
||||
-Dtransparency=false \
|
||||
-Dgnome_shell_gresource=true
|
||||
meson compile -C build-solid
|
||||
|
||||
DESTDIR="$ROOTDIR" meson install -C build
|
||||
DESTDIR="$ROOTDIR" meson install -C build-solid
|
||||
|
||||
cd .. && rm -r arc-theme-$VERSION
|
||||
}
|
3
src/arc-icon-theme/.gitignore
vendored
Normal file
3
src/arc-icon-theme/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/arc-icon-theme/changes.md
Normal file
2
src/arc-icon-theme/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 20161122
|
||||
First version
|
21
src/arc-icon-theme/pkg.sh
Normal file
21
src/arc-icon-theme/pkg.sh
Normal file
@ -0,0 +1,21 @@
|
||||
NAME="arc-icon-theme"
|
||||
DESC="Arc icon theme"
|
||||
VERSION="20161122"
|
||||
FILES=("https://github.com/horst3180/arc-icon-theme/archive/refs/tags/$VERSION.tar.gz")
|
||||
HASHES=("5d0f1417358eb81994868949acefe146537d8f3cc2fd7f529f9e6ba9c264845e50962f94427bac1262a76d3ca98d05795819d7c4a6ecd3139b0b57a6e9fdfad1")
|
||||
DEPENDS=("hicolor-icon-theme")
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $VERSION.tar.gz
|
||||
cd $NAME-$VERSION
|
||||
|
||||
./autogen.sh --prefix=/usr
|
||||
make DESTDIR="$ROOTDIR" install
|
||||
|
||||
cd .. && rm -r $NAME-$VERSION
|
||||
}
|
||||
|
||||
INSTALL(){
|
||||
update-icon-cache
|
||||
exit 0
|
||||
}
|
3
src/asciidoc/.gitignore
vendored
Normal file
3
src/asciidoc/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/asciidoc/changes.md
Normal file
2
src/asciidoc/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 10.2.0
|
||||
First version
|
16
src/asciidoc/pkg.sh
Normal file
16
src/asciidoc/pkg.sh
Normal file
@ -0,0 +1,16 @@
|
||||
NAME="asciidoc"
|
||||
DESC="Text document format for writing notes, documentation, articles, books, ebooks, slideshows, web pages, man pages and blogs"
|
||||
VERSION="10.2.0"
|
||||
FILES=("https://files.pythonhosted.org/packages/source/a/asciidoc/asciidoc-$VERSION.tar.gz")
|
||||
HASHES=("ecac3af818f7a65596efc6e243b520a0")
|
||||
DEPENDS=()
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.gz
|
||||
cd $NAME-$VERSION
|
||||
|
||||
python3 setup.py build
|
||||
python3 setup.py install --optimize=1 --root=$ROOTDIR
|
||||
|
||||
cd .. && rm -rf $NAME-$VERSION
|
||||
}
|
3
src/aspell/.gitignore
vendored
Normal file
3
src/aspell/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/aspell/changes.md
Normal file
2
src/aspell/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 0.60.8
|
||||
First version
|
28
src/aspell/pkg.sh
Normal file
28
src/aspell/pkg.sh
Normal file
@ -0,0 +1,28 @@
|
||||
NAME="aspell"
|
||||
DESC="Interactive spell checking program and the Aspell libraries"
|
||||
VERSION="0.60.8"
|
||||
FILES=("https://ftp.gnu.org/gnu/aspell/aspell-$VERSION.tar.gz")
|
||||
HASHES=("012fa9209203ae4e5a61c2a668fd10e3")
|
||||
DEPENDS=()
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.gz
|
||||
cd $NAME-$VERSION
|
||||
|
||||
./configure --prefix=/usr
|
||||
make && make DESTDIR="$ROOTDIR" install
|
||||
|
||||
ln -svfn aspell-${VERSION%.*} "$ROOTDIR/usr/lib/aspell"
|
||||
install -v -m755 -d "$ROOTDIR/usr/share/doc/aspell-$VERSION/aspell"{,-dev}.html
|
||||
install -v -m644 manual/aspell.html/* \
|
||||
"$ROOTDIR/usr/share/doc/aspell-$VERSION/aspell.html"
|
||||
install -v -m644 manual/aspell-dev.html/* \
|
||||
"$ROOTDIR/usr/share/doc/aspell-$VERSION/aspell-dev.html"
|
||||
|
||||
cd .. && rm -r $NAME-$VERSION
|
||||
}
|
||||
|
||||
INSTALL(){
|
||||
echo "!! Install dictionaries from https://ftp.gnu.org/gnu/aspell/dict in order to use aspell !!"
|
||||
exit 0
|
||||
}
|
3
src/at-spi2-core/.gitignore
vendored
Normal file
3
src/at-spi2-core/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/at-spi2-core/changes.md
Normal file
2
src/at-spi2-core/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 2.48.3
|
||||
First version
|
22
src/at-spi2-core/pkg.sh
Normal file
22
src/at-spi2-core/pkg.sh
Normal file
@ -0,0 +1,22 @@
|
||||
NAME="at-spi2-core"
|
||||
DESC="Comprehensive accessibility framework for the Assistive Technologies available on the GNOME platform"
|
||||
VERSION="2.48.3"
|
||||
FILES=("https://download.gnome.org/sources/at-spi2-core/2.48/at-spi2-core-$VERSION.tar.xz")
|
||||
HASHES=("4ef1875d9e7035f672d494b997c892af")
|
||||
DEPENDS=(
|
||||
"dbus" "glib" "gsettings-desktop-schemas" "libx11"
|
||||
"libxml2" "libxtst" "xprop" "systemd"
|
||||
)
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.xz
|
||||
cd $NAME-$VERSION
|
||||
|
||||
mkdir build
|
||||
cd build
|
||||
|
||||
meson setup --prefix=/usr --buildtype=release ..
|
||||
ninja && DESTDIR="$ROOTDIR" ninja install
|
||||
|
||||
cd ../.. && rm -rf $NAME-$VERSION
|
||||
}
|
3
src/atkmm/.gitignore
vendored
Normal file
3
src/atkmm/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/atkmm/changes.md
Normal file
2
src/atkmm/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 2.28.3
|
||||
First version
|
19
src/atkmm/pkg.sh
Normal file
19
src/atkmm/pkg.sh
Normal file
@ -0,0 +1,19 @@
|
||||
NAME="atkmm"
|
||||
DESC="Official C++ interface for the ATK accessibility toolkit library"
|
||||
VERSION="2.28.3"
|
||||
FILES=("https://download.gnome.org/sources/atkmm/2.28/atkmm-$VERSION.tar.xz")
|
||||
HASHES=("bad12606feaaba28c4d31b8857b7099e")
|
||||
DEPENDS=("glibmm" "at-spi2-core")
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.xz
|
||||
cd $NAME-$VERSION
|
||||
|
||||
mkdir build
|
||||
cd build
|
||||
|
||||
meson setup --prefix=/usr --buildtype=release ..
|
||||
ninja && DESTDIR="$ROOTDIR" ninja install
|
||||
|
||||
cd ../.. && rm -rf $NAME-$VERSION
|
||||
}
|
3
src/avahi/.gitignore
vendored
Normal file
3
src/avahi/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/avahi/changes.md
Normal file
2
src/avahi/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 0.8
|
||||
First version
|
41
src/avahi/pkg.sh
Normal file
41
src/avahi/pkg.sh
Normal file
@ -0,0 +1,41 @@
|
||||
NAME="avahi"
|
||||
DESC="System which facilitates service discovery on a local network"
|
||||
VERSION="0.8"
|
||||
FILES=(
|
||||
"https://github.com/lathiat/avahi/releases/download/v$VERSION/avahi-$VERSION.tar.gz"
|
||||
"https://www.linuxfromscratch.org/patches/blfs/12.0/avahi-$VERSION-ipv6_race_condition_fix-1.patch"
|
||||
)
|
||||
HASHES=(
|
||||
"229c6aa30674fc43c202b22c5f8c2be7"
|
||||
"218c909581d0ca2c86c8145bb0797050d987a6b0ae3417949dbe2a6d55c49360"
|
||||
)
|
||||
DEPENDS=("glib" "gtk2" "gtk3" "libdaemon" "libglade" "qt5")
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.gz
|
||||
cd $NAME-$VERSION
|
||||
|
||||
patch -Np1 -i ../avahi-$VERSION-ipv6_race_condition_fix-1.patch
|
||||
sed -i '426a if (events & AVAHI_WATCH_HUP) { \
|
||||
client_free(c); \
|
||||
return; \
|
||||
}' avahi-daemon/simple-protocol.c
|
||||
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var \
|
||||
--disable-static \
|
||||
--disable-libevent \
|
||||
--disable-mono \
|
||||
--disable-monodoc \
|
||||
--disable-python \
|
||||
--disable-qt3 \
|
||||
--disable-qt4 \
|
||||
--enable-core-docs \
|
||||
--with-distro=none \
|
||||
--with-dbus-system-address='unix:path=/run/dbus/system_bus_socket'
|
||||
make && make DESTDIR="$ROOTDIR" install
|
||||
|
||||
cd .. && rm -r $NAME-$VERSION
|
||||
}
|
3
src/awesome/.gitignore
vendored
Normal file
3
src/awesome/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/awesome/changes.md
Normal file
2
src/awesome/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 1
|
||||
First version
|
12
src/awesome/pkg.sh
Normal file
12
src/awesome/pkg.sh
Normal file
@ -0,0 +1,12 @@
|
||||
NAME="awesome"
|
||||
DESC="Awesome window manager"
|
||||
VERSION="1"
|
||||
FILES=()
|
||||
HASHES=()
|
||||
DEPENDS=("awesomewm" "rlwrap" "vicious")
|
||||
|
||||
PACKAGE() {
|
||||
echo This is just a wrapper package, nothing to do
|
||||
mkdir -pv "$ROOTDIR/var/lib/wrapperpkg"
|
||||
touch "$ROOTDIR/var/lib/wrapperpkg/mp-awesome"
|
||||
}
|
3
src/awesomewm/.gitignore
vendored
Normal file
3
src/awesomewm/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/awesomewm/changes.md
Normal file
2
src/awesomewm/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 4.3
|
||||
First version
|
28
src/awesomewm/pkg.sh
Normal file
28
src/awesomewm/pkg.sh
Normal file
@ -0,0 +1,28 @@
|
||||
NAME="awesomewm"
|
||||
DESC="awesome is a highly configurable, next generation framework window manager for X"
|
||||
VERSION="4.3"
|
||||
FILES=("https://github.com/awesomeWM/awesome/archive/refs/tags/v$VERSION.tar.gz")
|
||||
HASHES=("b8a509464fb964acfc0cfaa4c689beaceb0f720de3983053d54d440158c281dd")
|
||||
DEPENDS=(
|
||||
"cairo" "lua" "dbus"
|
||||
"gdk-pixbuf" "imlib2" "libxkbcommon"
|
||||
"pango" "startup-notification" "xcb-util-cursor"
|
||||
"xcb-util-keysyms" "xcb-util-wm" "xcb-util-xrm"
|
||||
)
|
||||
|
||||
PACKAGE() {
|
||||
tar xf v$VERSION.tar.gz
|
||||
cd awesome-$VERSION
|
||||
|
||||
mkdir build
|
||||
cd build
|
||||
|
||||
CFLAGS+=' -fcommon'
|
||||
cmake .. \
|
||||
-DCMAKE_BUILD_TYPE=RELEASE \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DSYSCONFDIR=/etc
|
||||
make && make DESTDIR="$ROOTDIR" install
|
||||
|
||||
cd ../.. && rm -r awesome-$VERSION
|
||||
}
|
3
src/babel/.gitignore
vendored
Normal file
3
src/babel/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/babel/changes.md
Normal file
2
src/babel/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 2.11.0
|
||||
First version
|
16
src/babel/pkg.sh
Normal file
16
src/babel/pkg.sh
Normal file
@ -0,0 +1,16 @@
|
||||
NAME="babel"
|
||||
DESC="Integrated collection of utilities that assist in internationalizing and localizing Python applications"
|
||||
VERSION="2.11.0"
|
||||
FILES=("https://files.pythonhosted.org/packages/source/B/Babel/Babel-$VERSION.tar.gz")
|
||||
HASHES=("9ee7784fd452d456206ecd3a12694010")
|
||||
DEPENDS=("python3" "pytz")
|
||||
|
||||
PACKAGE() {
|
||||
tar xf Babel-$VERSION.tar.gz
|
||||
cd Babel-$VERSION
|
||||
|
||||
python3 -m build --wheel --skip-dependency-check --no-isolation
|
||||
PYTHONPATH=src python3 -m installer --destdir="$ROOTDIR" dist/*.whl
|
||||
|
||||
cd .. && rm -r Babel-$VERSION
|
||||
}
|
3
src/bash-completion/.gitignore
vendored
Normal file
3
src/bash-completion/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/bash-completion/changes.md
Normal file
2
src/bash-completion/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 2.11
|
||||
First version
|
17
src/bash-completion/pkg.sh
Normal file
17
src/bash-completion/pkg.sh
Normal file
@ -0,0 +1,17 @@
|
||||
NAME="bash-completion"
|
||||
DESC="Programmable completion functions for bash"
|
||||
VERSION="2.11"
|
||||
FILES=("https://github.com/scop/bash-completion/releases/download/$VERSION/bash-completion-$VERSION.tar.xz")
|
||||
HASHES=("73a8894bad94dee83ab468fa09f628daffd567e8bef1a24277f1e9a0daf911ac")
|
||||
DEPENDS=("bash")
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.xz
|
||||
cd $NAME-$VERSION
|
||||
|
||||
./configure --prefix=/usr --sysconfdir=/etc
|
||||
make && make DESTDIR="$ROOTDIR" install
|
||||
rm -r "$ROOTDIR/etc/profile.d"
|
||||
|
||||
cd .. && rm -r $NAME-$VERSION
|
||||
}
|
3
src/bdftopcf/.gitignore
vendored
Normal file
3
src/bdftopcf/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/bdftopcf/changes.md
Normal file
2
src/bdftopcf/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 1.1.1
|
||||
First version
|
16
src/bdftopcf/pkg.sh
Normal file
16
src/bdftopcf/pkg.sh
Normal file
@ -0,0 +1,16 @@
|
||||
NAME="bdftopcf"
|
||||
DESC="Convert X font from Bitmap Distribution Format to Portable Compiled Format"
|
||||
VERSION="1.1.1"
|
||||
FILES=("https://www.x.org/pub/individual/util/bdftopcf-$VERSION.tar.xz")
|
||||
HASHES=("e09b61567ab4a4d534119bba24eddfb1")
|
||||
DEPENDS=()
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.xz
|
||||
cd $NAME-$VERSION
|
||||
|
||||
./configure $XORG_CONFIG
|
||||
make && make DESTDIR=${ROOTDIR} install
|
||||
|
||||
cd .. && rm -rf $NAME-$VERSION
|
||||
}
|
3
src/boost/.gitignore
vendored
Normal file
3
src/boost/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/boost/changes.md
Normal file
2
src/boost/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 1.83.0
|
||||
First version
|
19
src/boost/pkg.sh
Normal file
19
src/boost/pkg.sh
Normal file
@ -0,0 +1,19 @@
|
||||
NAME="boost"
|
||||
DESC="Set of free peer-reviewed portable C++ source libraries"
|
||||
VERSION="1.83.0"
|
||||
FILES=("https://boostorg.jfrog.io/artifactory/main/release/$VERSION/source/boost_1_83_0.tar.bz2")
|
||||
HASHES=("406f0b870182b4eb17a23a9d8fce967d")
|
||||
DEPENDS=("which")
|
||||
|
||||
PACKAGE() {
|
||||
tar xf ${NAME}_1_83_0.tar.bz2
|
||||
cd ${NAME}_1_83_0
|
||||
|
||||
sed -i '/#include.*phoenix.*tuple.hpp.*/d' \
|
||||
boost/phoenix/stl.hpp
|
||||
./bootstrap.sh --prefix="$ROOTDIR/usr" --with-python=python3
|
||||
./b2 stage -j$(nproc) threading=multi link=shared
|
||||
./b2 install threading=multi link=shared
|
||||
|
||||
cd .. && rm -rf ${NAME}_1_83_0
|
||||
}
|
3
src/bspwm/.gitignore
vendored
Normal file
3
src/bspwm/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/bspwm/changes.md
Normal file
2
src/bspwm/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 0.9.10
|
||||
First version
|
16
src/bspwm/pkg.sh
Normal file
16
src/bspwm/pkg.sh
Normal file
@ -0,0 +1,16 @@
|
||||
NAME="bspwm"
|
||||
DESC="A tiling window manager based on binary space partitioning"
|
||||
VERSION="0.9.10"
|
||||
FILES=("https://github.com/baskerville/bspwm/archive/refs/tags/$VERSION.tar.gz")
|
||||
HASHES=("0d0f5e465b9c27a5c2143c86189392fa297fad55253b9ed8f6854473d3928f8f")
|
||||
DEPENDS=(
|
||||
"xcb-util" "xcb-util-keysyms" "xcb-util-wm"
|
||||
"libxinerama" "libxrandr" "xauth" "sxhkd"
|
||||
"xcb-util" "libxdmcp"
|
||||
)
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $VERSION.tar.gz && cd $NAME-$VERSION
|
||||
make PREFIX=/usr && make DESTDIR="$ROOTDIR" install
|
||||
cd .. && rm -rf $NAME-$VERSION
|
||||
}
|
3
src/btop/.gitignore
vendored
Normal file
3
src/btop/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/btop/changes.md
Normal file
2
src/btop/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 1.3.2
|
||||
First version
|
16
src/btop/pkg.sh
Normal file
16
src/btop/pkg.sh
Normal file
@ -0,0 +1,16 @@
|
||||
NAME="btop"
|
||||
DESC="A monitor of resources"
|
||||
VERSION="1.3.2"
|
||||
FILES=("https://github.com/aristocratos/btop/archive/refs/tags/v$VERSION.tar.gz")
|
||||
HASHES=("331d18488b1dc7f06cfa12cff909230816a24c57790ba3e8224b117e3f0ae03e")
|
||||
DEPENDS=()
|
||||
|
||||
PACKAGE() {
|
||||
tar xf v$VERSION.tar.gz
|
||||
cd $NAME-$VERSION
|
||||
|
||||
make all
|
||||
make DESTDIR="$ROOTDIR" PREFIX=/usr install
|
||||
|
||||
cd .. && rm -r $NAME-$VERSION
|
||||
}
|
3
src/bubblewrap/.gitignore
vendored
Normal file
3
src/bubblewrap/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/bubblewrap/changes.md
Normal file
2
src/bubblewrap/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 0.8.0
|
||||
First version
|
20
src/bubblewrap/pkg.sh
Normal file
20
src/bubblewrap/pkg.sh
Normal file
@ -0,0 +1,20 @@
|
||||
NAME="bubblewrap"
|
||||
DESC="Setuid implementation of user namespaces, or sandboxing, that provides access to a subset of kernel user namespace features"
|
||||
VERSION="0.8.0"
|
||||
FILES=("https://github.com/containers/bubblewrap/releases/download/v$VERSION/bubblewrap-$VERSION.tar.xz")
|
||||
HASHES=("fc0e14bc26df76225e8f8cc2df9fb657")
|
||||
DEPENDS=("libseccomp")
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.xz
|
||||
cd $NAME-$VERSION
|
||||
|
||||
mkdir build
|
||||
cd build
|
||||
|
||||
meson setup --prefix=/usr --buildtype=release ..
|
||||
ninja && sed 's@symlink usr/lib64@ro-bind-try /lib64@' -i ../tests/libtest.sh
|
||||
DESTDIR="$ROOTDIR" ninja install
|
||||
|
||||
cd ../.. && rm -r $NAME-$VERSION
|
||||
}
|
3
src/c-ares/.gitignore
vendored
Normal file
3
src/c-ares/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/c-ares/changes.md
Normal file
2
src/c-ares/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 1.19.1
|
||||
First version
|
19
src/c-ares/pkg.sh
Normal file
19
src/c-ares/pkg.sh
Normal file
@ -0,0 +1,19 @@
|
||||
NAME="c-ares"
|
||||
DESC="C library for asynchronous DNS requests"
|
||||
VERSION="1.19.1"
|
||||
FILES=("https://c-ares.haxx.se/download/c-ares-$VERSION.tar.gz")
|
||||
HASHES=("dafc5825a92dc907e144570e4e75a908")
|
||||
DEPENDS=()
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.gz
|
||||
cd $NAME-$VERSION
|
||||
|
||||
mkdir build
|
||||
cd build
|
||||
|
||||
cmake -DCMAKE_INSTALL_PREFIX=/usr ..
|
||||
make && make DESTDIR="$ROOTDIR" install
|
||||
|
||||
cd ../.. && rm -r $NAME-$VERSION
|
||||
}
|
3
src/cairo/.gitignore
vendored
Normal file
3
src/cairo/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/cairo/changes.md
Normal file
2
src/cairo/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 1.17.6
|
||||
First version
|
24
src/cairo/pkg.sh
Normal file
24
src/cairo/pkg.sh
Normal file
@ -0,0 +1,24 @@
|
||||
NAME="cairo"
|
||||
DESC="2D graphics library with support for multiple output devices"
|
||||
VERSION="1.17.6"
|
||||
FILES=("https://download.gnome.org/sources/cairo/1.17/cairo-$VERSION.tar.xz")
|
||||
HASHES=("c5a6f255af72a2e5faa8e6a53dd882e2")
|
||||
DEPENDS=("libpng" "pixman" "glib" "fontconfig")
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.xz
|
||||
cd $NAME-$VERSION
|
||||
|
||||
sed 's/PTR/void */' -i util/cairo-trace/lookup-symbol.c
|
||||
sed -e "/@prefix@/a exec_prefix=@exec_prefix@" \
|
||||
-i util/cairo-script/cairo-script-interpreter.pc.in
|
||||
|
||||
./configure --prefix=/usr \
|
||||
--enable-gl \
|
||||
--enable-xlib-xcb \
|
||||
--disable-static \
|
||||
--enable-tee
|
||||
make && make DESTDIR=${ROOTDIR} install
|
||||
|
||||
cd .. && rm -rf $NAME-$VERSION
|
||||
}
|
3
src/cairomm/.gitignore
vendored
Normal file
3
src/cairomm/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/cairomm/changes.md
Normal file
2
src/cairomm/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 1.14.0
|
||||
First version
|
23
src/cairomm/pkg.sh
Normal file
23
src/cairomm/pkg.sh
Normal file
@ -0,0 +1,23 @@
|
||||
NAME="cairomm"
|
||||
DESC="C++ interface to Cairo"
|
||||
VERSION="1.14.0"
|
||||
FILES=("https://www.cairographics.org/releases/cairomm-$VERSION.tar.xz")
|
||||
HASHES=("75a08d50eb08b97667e4ea2be6efa1ad")
|
||||
DEPENDS=("cairo" "libsigc++" "boost")
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.xz
|
||||
cd $NAME-$VERSION
|
||||
|
||||
mkdir bld
|
||||
cd bld
|
||||
|
||||
meson setup .. \
|
||||
--prefix=/usr \
|
||||
--buildtype=release \
|
||||
-Dbuild-tests=true \
|
||||
-Dboost-shared=true
|
||||
ninja && DESTDIR="$ROOTDIR" ninja install
|
||||
|
||||
cd ../.. && rm -rf $NAME-$VERSION
|
||||
}
|
3
src/cbindgen/.gitignore
vendored
Normal file
3
src/cbindgen/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/cbindgen/changes.md
Normal file
2
src/cbindgen/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 0.24.3
|
||||
First version
|
17
src/cbindgen/pkg.sh
Normal file
17
src/cbindgen/pkg.sh
Normal file
@ -0,0 +1,17 @@
|
||||
NAME="cbindgen"
|
||||
DESC="Generate C bindings for Rust code."
|
||||
VERSION="0.24.3"
|
||||
FILES=("https://github.com/eqrion/cbindgen/archive/v$VERSION/cbindgen-$VERSION.tar.gz")
|
||||
HASHES=("6aa2991ca8411f9ebf9961e8b873e884")
|
||||
DEPENDS=()
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.gz
|
||||
cd $NAME-$VERSION
|
||||
|
||||
cargo build --release
|
||||
mkdir -pv "$ROOTDIR/usr/bin"
|
||||
install -Dm755 target/release/cbindgen "$ROOTDIR/usr/bin/"
|
||||
|
||||
cd .. && rm -r $NAME-$VERSION
|
||||
}
|
3
src/cdrtools/.gitignore
vendored
Normal file
3
src/cdrtools/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/cdrtools/changes.md
Normal file
2
src/cdrtools/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 3.02a09
|
||||
First version
|
26
src/cdrtools/pkg.sh
Normal file
26
src/cdrtools/pkg.sh
Normal file
@ -0,0 +1,26 @@
|
||||
NAME="cdrtools"
|
||||
DESC="CD recording utilities, useful for reading, creating or writing (burning) CDs, DVDs, and Blu-ray discs"
|
||||
VERSION="3.02a09"
|
||||
FILES=("https://downloads.sourceforge.net/cdrtools/cdrtools-$VERSION.tar.bz2")
|
||||
HASHES=("1e224a6adbbe4ad40047b9fddbb0e60c")
|
||||
DEPENDS=()
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.bz2
|
||||
cd $NAME-3.02
|
||||
|
||||
sed -i 's|/opt/schily|/usr|g' DEFAULTS/Defaults.linux
|
||||
sed -i 's|DEFINSGRP=.*|DEFINSGRP=root|' DEFAULTS/Defaults.linux
|
||||
sed -i 's|INSDIR=.*|INSDIR=bin|' rscsi/Makefile
|
||||
rm -rfv cdda2wav # this is broken
|
||||
|
||||
export GMAKE_NOWARN=true
|
||||
make INS_BASE=/usr INS_RBASE=/ LDOPTX="$LDFLAGS"
|
||||
make INS_BASE=/usr INS_RBASE=/ DESTDIR="$ROOTDIR" install
|
||||
|
||||
install -v -m755 -d $ROOTDIR/usr/share/doc/cdrtools-$VERSION
|
||||
install -v -m644 README.* READMEs/* ABOUT doc/*.ps \
|
||||
$ROOTDIR/usr/share/doc/cdrtools-$VERSION
|
||||
|
||||
cd .. && rm -rf $NAME-3.02
|
||||
}
|
3
src/charset-normalizer/.gitignore
vendored
Normal file
3
src/charset-normalizer/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/charset-normalizer/changes.md
Normal file
2
src/charset-normalizer/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 3.0.1
|
||||
First version
|
16
src/charset-normalizer/pkg.sh
Normal file
16
src/charset-normalizer/pkg.sh
Normal file
@ -0,0 +1,16 @@
|
||||
NAME="charset-normalizer"
|
||||
DESC="Helps reading text from an unknown character encoding"
|
||||
VERSION="3.0.1"
|
||||
FILES=("https://files.pythonhosted.org/packages/source/c/charset-normalizer/charset-normalizer-$VERSION.tar.gz")
|
||||
HASHES=("12ee1c8bedbfba84e99db46d5d94f411")
|
||||
DEPENDS=("python3")
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.gz
|
||||
cd $NAME-$VERSION
|
||||
|
||||
python3 -m build --wheel --skip-dependency-check --no-isolation
|
||||
PYTHONPATH=src python3 -m installer --destdir="$ROOTDIR" dist/*.whl
|
||||
|
||||
cd .. && rm -r $NAME-$VERSION
|
||||
}
|
3
src/clutter-gst/.gitignore
vendored
Normal file
3
src/clutter-gst/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/clutter-gst/changes.md
Normal file
2
src/clutter-gst/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 3.0.27
|
||||
First version
|
20
src/clutter-gst/pkg.sh
Normal file
20
src/clutter-gst/pkg.sh
Normal file
@ -0,0 +1,20 @@
|
||||
NAME="clutter-gst"
|
||||
DESC="Integration library for using GStreamer with Clutter"
|
||||
VERSION="3.0.27"
|
||||
FILES=("https://download.gnome.org/sources/clutter-gst/3.0/clutter-gst-$VERSION.tar.xz")
|
||||
HASHES=("2bf9d7ca146c9d71e86c45cd00e9a28e")
|
||||
DEPENDS=(
|
||||
"clutter" "gst-plugins-base" "libgudev"
|
||||
"gobject-introspection" "libxdamage"
|
||||
"gdk-pixbuf"
|
||||
)
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.xz
|
||||
cd $NAME-$VERSION
|
||||
|
||||
./configure --prefix=/usr
|
||||
make && make DESTDIR="$ROOTDIR" install
|
||||
|
||||
cd .. && rm -rf $NAME-$VERSION
|
||||
}
|
3
src/clutter-gtk/.gitignore
vendored
Normal file
3
src/clutter-gtk/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/clutter-gtk/changes.md
Normal file
2
src/clutter-gtk/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 1.8.4
|
||||
First version
|
16
src/clutter-gtk/pkg.sh
Normal file
16
src/clutter-gtk/pkg.sh
Normal file
@ -0,0 +1,16 @@
|
||||
NAME="clutter-gtk"
|
||||
DESC="Library providing facilities to integrate Clutter into GTK+ applications"
|
||||
VERSION="1.8.4"
|
||||
FILES=("https://download.gnome.org/sources/clutter-gtk/1.8/clutter-gtk-$VERSION.tar.xz")
|
||||
HASHES=("b363ac9878e2337be887b8ee9e1da00e")
|
||||
DEPENDS=("clutter" "gtk3" "gobject-introspection")
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.xz
|
||||
cd $NAME-$VERSION
|
||||
|
||||
./configure --prefix=/usr
|
||||
make && make DESTDIR="$ROOTDIR" install
|
||||
|
||||
cd .. && rm -rf $NAME-$VERSION
|
||||
}
|
3
src/clutter/.gitignore
vendored
Normal file
3
src/clutter/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/clutter/changes.md
Normal file
2
src/clutter/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 1.26.4
|
||||
First version
|
24
src/clutter/pkg.sh
Normal file
24
src/clutter/pkg.sh
Normal file
@ -0,0 +1,24 @@
|
||||
NAME="clutter"
|
||||
DESC="Open source software library used for creating fast, visually rich and animated graphical user interfaces"
|
||||
VERSION="1.26.4"
|
||||
FILES=("https://download.gnome.org/sources/clutter/1.26/clutter-$VERSION.tar.xz")
|
||||
HASHES=("624dd776a5159de0267587b1df6b97b2")
|
||||
DEPENDS=(
|
||||
"at-spi2-core" "cogl" "json-glib" "gobject-introspection"
|
||||
"gtk3" "libgudev" "libinput" "libxkbcommon"
|
||||
)
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.xz
|
||||
cd $NAME-$VERSION
|
||||
|
||||
./configure --prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--enable-egl-backend \
|
||||
--enable-evdev-input \
|
||||
--enable-wayland-backend \
|
||||
--enable-wayland-compositor
|
||||
make && make DESTDIR="$ROOTDIR" install
|
||||
|
||||
cd .. && rm -rf $NAME-$VERSION
|
||||
}
|
3
src/cmake/.gitignore
vendored
Normal file
3
src/cmake/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/cmake/changes.md
Normal file
2
src/cmake/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 3.27.2
|
||||
First version
|
23
src/cmake/pkg.sh
Normal file
23
src/cmake/pkg.sh
Normal file
@ -0,0 +1,23 @@
|
||||
NAME="cmake"
|
||||
DESC="Modern toolset used for generating Makefiles"
|
||||
VERSION="3.27.2"
|
||||
FILES=("https://cmake.org/files/v3.27/cmake-$VERSION.tar.gz")
|
||||
HASHES=("07786cd23c3d0aa9c2fef69efb13662b")
|
||||
DEPENDS=("curl" "libarchive")
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.gz
|
||||
cd $NAME-$VERSION
|
||||
|
||||
sed -i '/"lib64"/s/64//' Modules/GNUInstallDirs.cmake
|
||||
./bootstrap --prefix=/usr \
|
||||
--system-libs \
|
||||
--mandir=/share/man \
|
||||
--no-system-jsoncpp \
|
||||
--no-system-cppdap \
|
||||
--no-system-librhash \
|
||||
--docdir=/share/doc/cmake-$VERSION
|
||||
make && make DESTDIR=${ROOTDIR} install
|
||||
|
||||
cd .. && rm -rf $NAME-$VERSION
|
||||
}
|
3
src/cmatrix/.gitignore
vendored
Normal file
3
src/cmatrix/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user