Surprise! We've been running on hardware provided by BuyVM for a few months and wanted to show them a little appreciation.
Running a paste site comes with unique challenges, ones that aren't always obvious and hard to control. As such, BuyVM offered us a home where we could worry less about the hosting side of things and focus on maintaining a clean and useful service! Go check them out and show them some love!
Description: PKGBUILD
Submitted on December 5, 2016 at 08:46 AM

Section 1 (Text)

# Maintainer: Nils Bars <[email protected]>

pkgname=cutecom
pkgver=0.30.4
pkgrel=1
pkgdesc="A graphical serial terminal"
arch=('i686' 'x86_64')
url="https://github.com/neundorf/CuteCom/archive"
license=('GPL3')
depends=('qt5-serialport')
makedepends=('cmake')
source=(${url}/v${pkgver}.zip)

build() {
  cd ${srcdir}/CuteCom-${pkgver}

  cmake .
  make || return 1
}

package() {
  cd ${srcdir}/CuteCom-${pkgver}
  install -D -m 644 cutecom.desktop ${pkgdir}/usr/share/applications/cutecom.desktop
  install -D -m 755 cutecom ${pkgdir}/usr/bin/cutecom
  install -D -m 644 cutecom.1 ${pkgdir}/usr/share/man/man1/cutecom.1
}

md5sums=('315c8161a45e124ce3ab3ee106e28a01')