Package Details: deadbeef-plugins-psipublish 1.3-3

Git Clone URL: https://aur.archlinux.org/deadbeef-plugins-psipublish.git (read-only, click to copy)
Package Base: deadbeef-plugins-psipublish
Description: Plugin for DeaDBeeF to publish tune in Psi/Psi+
Upstream URL: http://psi-im.org/wiki/Publish_Tune
Licenses: GPL2
Submitter: maz-1
Maintainer: dreieck
Last Packager: dreieck
Votes: 0
Popularity: 0.000000
First Submitted: 2015-11-08 13:47 (UTC)
Last Updated: 2021-05-09 09:33 (UTC)

Dependencies (1)

Required by (0)

Sources (1)

Latest Comments

dreieck commented on 2021-05-09 09:33 (UTC) (edited on 2021-05-09 09:35 (UTC) by dreieck)

Adopted, and made package building again. (Functionality not tested, though, since I don't use it.)

dreieck commented on 2019-01-18 16:57 (UTC)

.. updated PKGBUILD (but not tested for software functionality, just it builds):

# Contributor: Joker-jar <joker-jar@yandex.ru>

#TODO: Place sourcecode to somewhere :)

pkgname=deadbeef-plugins-psipublish
pkgver=1.3
pkgrel=2
pkgdesc="Plugin for DeaDBeeF to publish tune in Psi/Psi+"
arch=('i686' 'x86_64')
url="http://psi-im.org/wiki/Publish_Tune"
license=('GPL2')
depends=('deadbeef')
makedepends=('deadbeef')
source=('psipublish.c')
md5sums=('cfab279f1c90cb0f31e833487e5dbc5b')

build() {
  cd "${srcdir}"
  gcc ${CFLAGS} -fPIC -I/usr/include/deadbeef -std=c99 -shared -o psipublish.so psipublish.c
}

package() {
  cd "${srcdir}"
  install -D -v -m644 'psipublish.so' "${pkgdir}/usr/lib/deadbeef/psipublish.so"
}

(Is -std=c99 really needed?)

dreieck commented on 2019-01-18 16:51 (UTC)

You are missing the package()-function in the PKGBUILD. makepkg cannot build it.