first commit

This commit is contained in:
ngn
2024-08-11 02:17:03 +03:00
commit ee34792885
1404 changed files with 13564 additions and 0 deletions

3
src/epiphany/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.cache/
dist/
root/

2
src/epiphany/changes.md Normal file
View File

@ -0,0 +1,2 @@
# 44.6
First version

28
src/epiphany/pkg.sh Normal file
View File

@ -0,0 +1,28 @@
NAME="epiphany"
DESC="Simple yet powerful GNOME web browser targeted at non-technical users"
VERSION="44.6"
FILES=("https://download.gnome.org/sources/epiphany/${VERSION%.*}/epiphany-$VERSION.tar.xz")
HASHES=("fbc40317261873100f625736ec6a511c")
DEPENDS=(
"gcr4" "iso-codes" "json-glib"
"nettle" "webkitgtk" "gnome-keyring"
"libadwaita" "libportal" "graphene"
)
PACKAGE() {
tar xf $NAME-$VERSION.tar.xz
cd $NAME-$VERSION
mkdir build
cd build
meson setup --prefix=/usr --buildtype=release ..
ninja $MAKEFLAGS && DESTDIR="$ROOTDIR" ninja install
cd ../.. && rm -r $NAME-$VERSION
}
INSTALL(){
glib-compile-schemas /usr/share/glib-2.0/schemas
exit 0
}