Search Criteria
Package Details: flmsg 4.0.17-1
Git Clone URL: | https://aur.archlinux.org/flmsg.git (read-only, click to copy) |
---|---|
Package Base: | flmsg |
Description: | Forms management editor for Amateur Radio standard message formats |
Upstream URL: | http://www.w1hkj.com/ |
Keywords: | amateur forms ham hamradio management radio rf |
Licenses: | |
Groups: | |
Submitter: | 7h0ma5 |
Maintainer: | GI_Jack |
Last Packager: | GI_Jack |
Votes: | 5 |
Popularity: | 0.000022 |
First Submitted: | 2013-12-04 12:08 |
Last Updated: | 2020-11-25 15:56 |
Latest Comments
chiz commented on 2020-11-23 03:24
4.0.16 is out time.......
felmey commented on 2020-08-22 10:06
Oh, you're already maintaining 115 packages... That's probably a lot to keep up with.
felmey commented on 2020-08-22 10:05
GI_Jack thanks... that PKGBUILD works great. I think you should adopt this!
GI_Jack commented on 2020-08-04 17:51
updated PKGBUILD: https://pastebin.com/2QD3VviX
rexhunt commented on 2018-09-08 10:11
There is a new version - 4.0.7. The old 4.0.6 source file has been removed from sourceforge. The md5 for the new file is 7d8112239f8ebf7690ecbb41edf18bb9
logikv commented on 2018-03-26 02:43
pkgname=flmsg pkgver=4.0.6 source=(https://sourceforge.net/projects/fldigi/files/$pkgname/$pkgname-$pkgver.tar.gz) md5sums=('031ccd647a5928ab12a945ea30312cc9')
fix
felmey commented on 2017-05-04 03:33
This PKGBUILD below works for flmsg 4.0.2:
# Maintainer: Thomas Gatzweiler <thomas.gatzweiler@gmail.com>
pkgname=flmsg
pkgver=4.0.2
pkgrel=1
pkgdesc="Forms management editor for Amateur Radio standard message formats"
arch=('i686' 'x86_64')
url="http://www.w1hkj.com/"
license=('GPL')
depends=('fldigi')
source=(http://downloads.sourceforge.net/project/fldigi/$pkgname/$pkgname-$pkgve
r.tar.gz)
md5sums=('0a86b8c91143bbe6f39d2eba577e6c2c')
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr
make
}
check() {
cd "$srcdir"/$pkgname-$pkgver
make -k check
}
package() {
cd "$srcdir"/$pkgname-$pkgver
make DESTDIR="$pkgdir" install
}