Skip to content

Instantly share code, notes, and snippets.

@MasWag
Created February 12, 2024 00:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MasWag/c7d2cb3b9dd5182c475f5202090629b9 to your computer and use it in GitHub Desktop.
Save MasWag/c7d2cb3b9dd5182c475f5202090629b9 to your computer and use it in GitHub Desktop.
PKGBUILD for robodoc 4.99.44 with -Wno-error=format-security
# Maintainer: Geballin - Guillaume Ballin <macniaque at free dot fr>
pkgname=robodoc
pkgver=4.99.44
pkgrel=1
pkgdesc="ROBODoc is program documentation tool. It works with many programming languages: For instance C, Pascal, Shell Scripts, Assembler, COBOL, Occam, Postscript, Forth, Tcl/Tk, C++, Java -- basically any program in which you can use remarks/comments."
url="https://rfsber.home.xs4all.nl/Robo/"
arch=('x86_64' 'i686')
license=('GPLv3')
depends=()
optdepends=()
makedepends=(gcc make)
conflicts=()
replaces=()
backup=()
install=
source=("http://rfsber.home.xs4all.nl/Robo/archives/robodoc-${pkgver}.tar.gz")
md5sums=('ad983c18379800859158b0fedc8378f3')
build() {
tar xzf robodoc-${pkgver}.tar.gz
cd robodoc-${pkgver}
./configure --prefix=/usr CFLAGS=-Wno-error=format-security
make
}
package() {
cd robodoc-${pkgver}
make DESTDIR="${pkgdir}" install
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment