diff options
author | Deposite Pirate | 2020-05-02 17:29:29 +0200 |
---|---|---|
committer | Deposite Pirate | 2020-05-02 17:29:29 +0200 |
commit | a027a456384604f17fa45332d6c7f701677621d6 (patch) | |
tree | 870025ec63550754430b3eeaee68b779bcbce2ae /deadbeef-plugin-discord-git/PKGBUILD | |
parent | 0e7b571292682f8f416debf8f8914bf7a4313d36 (diff) |
* Drop deadbeef discord plugin.
deleted: deadbeef-plugin-discord-git/.SRCINFO
deleted: deadbeef-plugin-discord-git/PKGBUILD
deleted: deadbeef-plugin-discord-git/ddb_discord_presence-makefile.patch
Diffstat (limited to 'deadbeef-plugin-discord-git/PKGBUILD')
-rw-r--r-- | deadbeef-plugin-discord-git/PKGBUILD | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/deadbeef-plugin-discord-git/PKGBUILD b/deadbeef-plugin-discord-git/PKGBUILD deleted file mode 100644 index 11341d9..0000000 --- a/deadbeef-plugin-discord-git/PKGBUILD +++ /dev/null @@ -1,47 +0,0 @@ -# Maintainer: Deposite Pirate <dpirate at metalpunks dot info> -# -# Upstream: https://git.metalpunks.info/arch-ports - -_pkgname=ddb_discord_presence -pkgname=deadbeef-plugin-discord-git -pkgver=r26.g70c06e1 -pkgrel=1 -pkgdesc="DeaDBeeF Discord rich presence plugin" -arch=('i686' 'x86_64') -url="https://github.com/kuba160/ddb_discord_presence" -license=('BSD') -depends=('deadbeef') -makedepends=('git') -source=("${_pkgname}::git+https://github.com/kuba160/${_pkgname}" - "${_pkgname}-makefile.patch") -sha256sums=('SKIP' - '2c234522f8854be7ca7222b4929b88259dda8638a62efe377985889bce5d4e84') - -pkgver() { - cd "${_pkgname}" - printf "r%s.g%s" \ - "$(git rev-list --count HEAD)" \ - "$(git rev-parse --short HEAD)" -} - -prepare() { - cd "${_pkgname}" - - # Arch compile FLAGS - patch -p1 -i ../${_pkgname}-makefile.patch - - make submodules_load - make discord-rpc-patch -} - -build() { - cd "${_pkgname}" - ( cd discord-rpc ; make thirdparty/rapidjson-1.1.0 ) - make COPT="${CFLAGS}" CXXOPT="${CXXFLAGS}" -} - -package() { - cd "${_pkgname}" - install -m0755 -d "${pkgdir}/usr/lib/deadbeef" - make PREFIX="${pkgdir}/usr/lib/deadbeef" install -} |