Browse Source
subrepo: subdir: "fribidi" merged: "1e19c8e" upstream: origin: "gitea@gitea.artixlinux.org:packagesF/fribidi.git" branch: "master" commit: "1e19c8e" git-subrepo: version: "0.4.0" origin: "???" commit: "???"master
7 changed files with 131 additions and 0 deletions
@ -0,0 +1,33 @@
|
||||
# ---> ArchLinuxPackages |
||||
*.tar |
||||
*.tar.* |
||||
*.jar |
||||
*.exe |
||||
*.msi |
||||
*.zip |
||||
*.tgz |
||||
*.log |
||||
*.log.* |
||||
*.sig |
||||
|
||||
pkg/ |
||||
src/ |
||||
|
||||
|
||||
# ---> Archives |
||||
*.7z |
||||
*.rar |
||||
*.gz |
||||
*.bzip |
||||
*.bz2 |
||||
*.xz |
||||
*.lzma |
||||
*.cab |
||||
|
||||
# ---> systemd |
||||
*.service |
||||
*.socket |
||||
*.timer |
||||
|
||||
# ---> snap |
||||
*.snap |
@ -0,0 +1,12 @@
|
||||
; DO NOT EDIT (unless you know what you are doing) |
||||
; |
||||
; This subdirectory is a git "subrepo", and this file is maintained by the |
||||
; git-subrepo command. See https://github.com/git-commands/git-subrepo#readme |
||||
; |
||||
[subrepo] |
||||
remote = gitea@gitea.artixlinux.org:packagesF/fribidi.git |
||||
branch = master |
||||
commit = 1e19c8ec11eb9dc023817000a069c486d65390e0 |
||||
parent = cf138eec85fa1c39b214ee64c1ff87e6e2888b4a |
||||
method = merge |
||||
cmdver = 0.4.0 |
@ -0,0 +1,3 @@
|
||||
@Library('artix-ci') import org.artixlinux.RepoPackage |
||||
|
||||
PackagePipeline(new RepoPackage(this)) |
@ -0,0 +1,38 @@
|
||||
# $Id$ |
||||
# Maintainer: Giovanni Scafora <giovanni@archlinux.org> |
||||
# Contributor: Nezmer <Nezmer@gmail.com> |
||||
|
||||
pkgname=fribidi |
||||
pkgver=1.0.5 |
||||
pkgrel=1 |
||||
pkgdesc="A Free Implementation of the Unicode Bidirectional Algorithm" |
||||
arch=('x86_64') |
||||
license=('LGPL') |
||||
url="https://github.com/fribidi/fribidi/" |
||||
depends=('glibc') |
||||
makedepends=('git' 'meson') |
||||
_commit=5b6a16e8da12ae7ff482fbfa5a17b72bd518418f # tags/v1.0.5^0 |
||||
source=("git+https://github.com/fribidi/fribidi#commit=$_commit") |
||||
md5sums=('SKIP') |
||||
|
||||
pkgver() { |
||||
cd $pkgname |
||||
git describe --tags | sed -e 's/-/+/g' -e 's/^v//' |
||||
} |
||||
|
||||
prepare() { |
||||
cd $pkgname |
||||
} |
||||
|
||||
build() { |
||||
arch-meson $pkgname build -D docs=false |
||||
ninja -C build |
||||
} |
||||
|
||||
check() { |
||||
meson test -C build |
||||
} |
||||
|
||||
package() { |
||||
DESTDIR="$pkgdir" meson install -C build |
||||
} |
@ -0,0 +1,38 @@
|
||||
# $Id$ |
||||
# Maintainer: Giovanni Scafora <giovanni@archlinux.org> |
||||
# Contributor: Nezmer <Nezmer@gmail.com> |
||||
|
||||
pkgname=fribidi |
||||
pkgver=1.0.5 |
||||
pkgrel=1 |
||||
pkgdesc="A Free Implementation of the Unicode Bidirectional Algorithm" |
||||
arch=('x86_64') |
||||
license=('LGPL') |
||||
url="https://github.com/fribidi/fribidi/" |
||||
depends=('glibc') |
||||
makedepends=('git' 'meson') |
||||
_commit=5b6a16e8da12ae7ff482fbfa5a17b72bd518418f # tags/v1.0.5^0 |
||||
source=("git+https://github.com/fribidi/fribidi#commit=$_commit") |
||||
md5sums=('SKIP') |
||||
|
||||
pkgver() { |
||||
cd $pkgname |
||||
git describe --tags | sed -e 's/-/+/g' -e 's/^v//' |
||||
} |
||||
|
||||
prepare() { |
||||
cd $pkgname |
||||
} |
||||
|
||||
build() { |
||||
arch-meson $pkgname build -D docs=false |
||||
ninja -C build |
||||
} |
||||
|
||||
check() { |
||||
meson test -C build |
||||
} |
||||
|
||||
package() { |
||||
DESTDIR="$pkgdir" meson install -C build |
||||
} |
Loading…
Reference in new issue