Remove OBS Arch PKG

Unify Arch PKGs into a single one distributed only on AUR
This commit is contained in:
Rafał Dzięgiel
2021-02-04 16:23:45 +01:00
parent 3bcf01efb6
commit 233c8430bc
2 changed files with 0 additions and 60 deletions

View File

@@ -4,7 +4,6 @@
<param name="url">https://github.com/Rafostar/clapper.git</param>
<param name="extract">pkgs/rpm/clapper.spec</param>
<param name="extract">pkgs/rpm/clapper.rpmlintrc</param>
<param name="extract">pkgs/arch/obs/PKGBUILD</param>
<param name="extract">pkgs/deb/clapper.dsc</param>
</service>
<service name="tar" mode="buildtime"/>

View File

@@ -1,59 +0,0 @@
#
# PKGBUILD file for package clapper
#
# Copyright (C) 2020 sp1rit
# Copyright (C) 2020 Rafostar
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
# Maintainer: Rafostar <rafostar.github@gmail.com>
pkgname=clapper
pkgver=0.0.0
pkgrel=1
pkgdesc="A GNOME media player built using GJS with GTK4 toolkit and powered by GStreamer with OpenGL rendering."
arch=(any)
url="https://github.com/Rafostar/clapper"
license=("GPL-3.0")
depends=(
"gtk4>=4.0.0"
"hicolor-icon-theme"
"gjs"
"gst-plugins-base-libs>=1.18.0"
"gst-plugins-good>=1.18.0"
"gst-plugins-bad-libs>=1.18.0"
)
makedepends=(
"meson>=0.50"
"gjs"
)
optdepends=(
"gst-libav: Popular video decoders"
"gstreamer-vaapi: Intel/AMD video acceleration"
)
source=("$pkgname-$pkgver.tar.xz")
provides=("${pkgname}")
replaces=("${pkgname}")
conflicts=("${pkgname}")
md5sums=("SKIP")
build() {
cd "$srcdir/$pkgname-$pkgver"
meson build/ --prefix=/usr
}
package() {
cd "$srcdir/$pkgname-$pkgver"
DESTDIR="$pkgdir" meson install -C build/
}