Browse Source
subrepo: subdir: "libbluray" merged: "a310fb8" upstream: origin: "gitea@gitea.artixlinux.org:packagesL/libbluray.git" branch: "master" commit: "a310fb8" git-subrepo: version: "0.4.0" origin: "???" commit: "???"master
7 changed files with 167 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:packagesL/libbluray.git |
||||
branch = master |
||||
commit = a310fb828d5911b86f90b700c2e4bc486262b07a |
||||
parent = 68a2b53a1e2ed10e92b7ba37bb21c1d34ec3a66a |
||||
method = merge |
||||
cmdver = 0.4.0 |
@ -0,0 +1,3 @@
|
||||
@Library('artix-ci') import org.artixlinux.RepoPackage |
||||
|
||||
PackagePipeline(new RepoPackage(this)) |
@ -0,0 +1,56 @@
|
||||
# Maintainer: Maxime Gauduin <alucryd@archlinux.org> |
||||
# Contributor: Ionut Biru <ibiru@archlinux.org> |
||||
# Contributor: Bartłomiej Piotrowski <bpiotrowski@archlinux.org> |
||||
# Contributor: Andrew Cook <ariscop@gmail.com> |
||||
|
||||
pkgname=libbluray |
||||
pkgver=1.1.2 |
||||
pkgrel=1 |
||||
pkgdesc='Library to access Blu-Ray disks for video playback' |
||||
arch=(x86_64) |
||||
url=https://www.videolan.org/developers/libbluray.html |
||||
license=(LGPL2.1) |
||||
depends=( |
||||
fontconfig |
||||
libfreetype.so |
||||
libxml2 |
||||
) |
||||
makedepends=( |
||||
apache-ant |
||||
git |
||||
java-environment=8 |
||||
) |
||||
optdepends=('java-runtime=8: BD-J library') |
||||
provides=(libbluray.so) |
||||
source=( |
||||
git+https://code.videolan.org/videolan/libbluray.git#tag=${pkgver} |
||||
git+https://code.videolan.org/videolan/libudfread.git |
||||
) |
||||
sha256sums=('SKIP' |
||||
'SKIP') |
||||
|
||||
prepare() { |
||||
cd libbluray |
||||
|
||||
for submodule in contrib/libudfread; do |
||||
git submodule init ${submodule} |
||||
git config submodule.${submodule}.url ../${submodule#*/} |
||||
git submodule update ${submodule} |
||||
done |
||||
|
||||
autoreconf -fiv |
||||
} |
||||
|
||||
build() { |
||||
cd libbluray |
||||
|
||||
./configure \ |
||||
--prefix='/usr' |
||||
make |
||||
} |
||||
|
||||
package() { |
||||
make DESTDIR="${pkgdir}" -C libbluray install |
||||
} |
||||
|
||||
# vim: ts=2 sw=2 et: |
@ -0,0 +1,56 @@
|
||||
# Maintainer: Maxime Gauduin <alucryd@archlinux.org> |
||||
# Contributor: Ionut Biru <ibiru@archlinux.org> |
||||
# Contributor: Bartłomiej Piotrowski <bpiotrowski@archlinux.org> |
||||
# Contributor: Andrew Cook <ariscop@gmail.com> |
||||
|
||||
pkgname=libbluray |
||||
pkgver=1.1.2 |
||||
pkgrel=1 |
||||
pkgdesc='Library to access Blu-Ray disks for video playback' |
||||
arch=(x86_64) |
||||
url=https://www.videolan.org/developers/libbluray.html |
||||
license=(LGPL2.1) |
||||
depends=( |
||||
fontconfig |
||||
libfreetype.so |
||||
libxml2 |
||||
) |
||||
makedepends=( |
||||
apache-ant |
||||
git |
||||
java-environment=8 |
||||
) |
||||
optdepends=('java-runtime=8: BD-J library') |
||||
provides=(libbluray.so) |
||||
source=( |
||||
git+https://code.videolan.org/videolan/libbluray.git#tag=${pkgver} |
||||
git+https://code.videolan.org/videolan/libudfread.git |
||||
) |
||||
sha256sums=('SKIP' |
||||
'SKIP') |
||||
|
||||
prepare() { |
||||
cd libbluray |
||||
|
||||
for submodule in contrib/libudfread; do |
||||
git submodule init ${submodule} |
||||
git config submodule.${submodule}.url ../${submodule#*/} |
||||
git submodule update ${submodule} |
||||
done |
||||
|
||||
autoreconf -fiv |
||||
} |
||||
|
||||
build() { |
||||
cd libbluray |
||||
|
||||
./configure \ |
||||
--prefix='/usr' |
||||
make |
||||
} |
||||
|
||||
package() { |
||||
make DESTDIR="${pkgdir}" -C libbluray install |
||||
} |
||||
|
||||
# vim: ts=2 sw=2 et: |
Loading…
Reference in new issue