diff options
-rw-r--r-- | libre/mate-sensors-applet/PKGBUILD?h=packages%2Fmate-sensors-applet | 34 | ||||
-rw-r--r-- | pcr/apertium-viewer/PKGBUILD?h=apertium-viewer | 42 |
2 files changed, 0 insertions, 76 deletions
diff --git a/libre/mate-sensors-applet/PKGBUILD?h=packages%2Fmate-sensors-applet b/libre/mate-sensors-applet/PKGBUILD?h=packages%2Fmate-sensors-applet deleted file mode 100644 index de0ee6a85..000000000 --- a/libre/mate-sensors-applet/PKGBUILD?h=packages%2Fmate-sensors-applet +++ /dev/null @@ -1,34 +0,0 @@ -# Maintainer: -# Contributor: Martin Wimpress <code@flexion.org> - -pkgname=mate-sensors-applet -pkgver=1.18.3 -pkgrel=1 -pkgdesc="A MATE Panel applet to display readings from hardware sensors, including CPU temperature, fan speeds and voltage readings" -url="https://mate-desktop.org" -arch=('x86_64') -license=('GPL') -depends=('libatasmart' 'libnotify' 'libxnvctrl' 'lm_sensors' 'mate-panel') -makedepends=('docbook-xsl' 'intltool' 'itstool') -groups=('mate-extra') -conflicts=('mate-sensors-applet-gtk3') -replaces=('mate-sensors-applet-gtk3') -source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz") -sha256sums=('9dd5f097b4332a8d84b5b6e842ad529f0ebcd72ffa69ce8fde6f8e736146a6da') - -build() { - cd ${pkgname}-${pkgver} - ./configure \ - --prefix=/usr \ - --libexecdir=/usr/lib/${pkgname} - - #https://bugzilla.gnome.org/show_bug.cgi?id=656231 - sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool - - make -} - -package() { - cd ${pkgname}-${pkgver} - make DESTDIR="${pkgdir}" install -} diff --git a/pcr/apertium-viewer/PKGBUILD?h=apertium-viewer b/pcr/apertium-viewer/PKGBUILD?h=apertium-viewer deleted file mode 100644 index 3ac2924e6..000000000 --- a/pcr/apertium-viewer/PKGBUILD?h=apertium-viewer +++ /dev/null @@ -1,42 +0,0 @@ -# Maintainer: ValHue <vhuelamo at gmail dot com> -# https://github.com/ValHue/AUR-PKGBUILDs - -pkgname="apertium-viewer" -pkgver=2.5.3 -pkgrel=1 -pkgdesc="A tool to view and edit the output of the various stages of an apertium translation." -url="http://wiki.apertium.org/wiki/Apertium-view" -arch=('i686' 'x86_64') -license=('GPL2') -depends=('java-environment') -conflicts=("${pkgname}") -provides=("${pkgname}") -source=("https://svn.code.sf.net/p/apertium/svn/builds/apertium-viewer/apertium-viewer.jar") -sha256sums=('a445759095abb7c98b976032a07aa729740883eb52a3edb752eb33952033dc10') -options=() - -_apertium_viewer_desktop="[Desktop Entry] -Encoding=UTF-8 -Version=1.0 -Type=Application -Exec=apertium-viewer -Name=Apertium Viewer -Icon=apertium.png" - -build() { - cd "${srcdir}" - echo -e "$_apertium_viewer_desktop" | tee apertium-viewer.desktop - echo "java -Xmx500m -jar /usr/share/apertium/apertium-viewer.jar" > apertium-viewer -} - -package() { - cd "${srcdir}" - install -d ${pkgdir}/usr/bin - install -d ${pkgdir}/usr/share/{apertium,applications,pixmaps,} - install -m 644 apertium-viewer.jar "${pkgdir}/usr/share/apertium/" - install -m 644 *.desktop "${pkgdir}/usr/share/applications/" - install -m 644 apertiumview/resources/apertium.png "${pkgdir}/usr/share/pixmaps/" - install -m 755 apertium-viewer "${pkgdir}/usr/bin/" -} - -# vim:set ts=4 sw=2 ft=sh et: |