Last active
September 26, 2017 22:02
-
-
Save sionleroux/5744951 to your computer and use it in GitHub Desktop.
PKGBUILD for the tomboy-calc package in AUR.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Siôn Le Roux <sinisterstuf@gmail.com> | |
pkgname=tomboy-calc | |
pkgver=0.40 | |
pkgrel=1 | |
pkgdesc="A tomboy plugin to compute mathematical equations in notes." | |
url="http://www.robpvn.net/calcaddin/" | |
depends=('tomboy') | |
arch=(any) | |
license=(GPL) | |
source=("https://github.com/downloads/robpvn/Tomboy-Calculator-Addin/tomboy_calculatoraddin.zip") | |
md5sums=('9c9163cb6d1c0cda18a7844b1af53a47') | |
package() { | |
install -Dm644 $srcdir/MathLib.dll $pkgdir/usr/lib/tomboy/addins/MathLib.dll | |
install -Dm644 $srcdir/CalculatorAddin.dll $pkgdir/usr/lib/tomboy/addins/CalculatorAddin.dll | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment