Skip to content

Instantly share code, notes, and snippets.

View sseemayer's full-sized avatar

Stefan Seemayer sseemayer

View GitHub Profile
@sseemayer
sseemayer / PKGBUILD
Created November 21, 2012 14:16
mendeleydesktop 1.7-1 PKGBUILD
##maintainer Meow < meow at linux dot cn >
pkgname=mendeleydesktop
pkgver=1.7
pkgrel=1
pkgdesc="Academic software for managing and sharing research papers (desktop client)"
url=http://www.mendeley.com/release-notes/
arch=(i686 x86_64)
depends=(python2 qtwebkit)
license=(custom:mendeley_eula)
@sseemayer
sseemayer / PKGBUILD
Last active December 16, 2015 05:59
svmlight 6.02 cleaner PKGBUILD
# PKGBUILD author: chimeracoder <dev@chimeracoder.net>
# Contributor: Stefan Seemayer (mail@semicolonsoftware.de)
pkgname=svmlight
pkgver=6.02
pkgrel=2
pkgdesc="An implementation of Support Vector Machines (SVMs) in C"
url="http://svmlight.joachims.org/"
depends=('gcc')
makedepends=('help2man')
license=('custom')
@sseemayer
sseemayer / PKGBUILD
Created July 1, 2013 08:11
python2-amqp version 1.0.12 PKGBUILD
# Maintainer: Xeross <contact@xeross.me>
# Contributor: Timothée Ravier <tim@siosm.fr>
pkgname=python2-amqp
pkgver=1.0.12
pkgrel=1
pkgdesc="Low-level AMQP client for Python (fork of amqplib)"
arch=('any')
url="https://github.com/celery/py-amqp/"
license=("LGPL")
@sseemayer
sseemayer / PKGBUILD
Last active December 24, 2015 01:49
python2-amqp PKGBUILD for version 1.0.13
# Maintainer: Xeross <contact@xeross.me>
# Contributor: Timothée Ravier <tim@siosm.fr>
pkgname=python2-amqp
pkgver=1.0.13
pkgrel=1
pkgdesc="Low-level AMQP client for Python (fork of amqplib)"
arch=('any')
url="https://github.com/celery/py-amqp/"
license=("LGPL")
CC = gcc
CFLAGS = -g -Wall -fPIC -std=gnu99 -O3 -march=native
all: libtest.so
libtest.so: test.o
$(CC) -shared -Wl,-soname,libtest.so -o libtest.so $<
%.o: %.c
$(CC) -c $(CFLAGS) $<
@sseemayer
sseemayer / PKGBUILD
Created November 20, 2013 10:09
python2-celery 3.1.4 PKGBUILD
# Maintainer: Tevin Zhang <mail2tevin {at} gmail {dot} com>
pkgname=python2-celery
pkgver=3.1.4
pkgrel=0
pkgdesc="Distributed Task Queue"
arch=("any")
url="http://celeryproject.org/"
license=("BSD")
depends=("python2" "python2-kombu" "python2-dateutil" "python2-billiard" "python2-amqp")
@sseemayer
sseemayer / PKGBUILD
Created November 20, 2013 10:18
python2-amqp 1.3.3 PKGBUILD
# Maintainer: Xeross <contact@xeross.me>
# Contributor: Timothée Ravier <tim@siosm.fr>
pkgname=python2-amqp
pkgver=1.3.3
pkgrel=1
pkgdesc="Low-level AMQP client for Python (fork of amqplib)"
arch=('any')
url="https://github.com/celery/py-amqp/"
license=("LGPL")
@sseemayer
sseemayer / PKGBUILD
Last active December 30, 2015 18:49
python2-celery 3.1.6 PKGBUILD
# Maintainer: Tevin Zhang <mail2tevin {at} gmail {dot} com>
pkgname=python2-celery
pkgver=3.1.6
pkgrel=0
pkgdesc="Distributed Task Queue"
arch=("any")
url="http://celeryproject.org/"
license=("BSD")
depends=("python2" "python2-kombu>=3.0.7" "python2-dateutil" "python2-billiard>=3.3.0.10" "python2-amqp>=1.3.3")
@sseemayer
sseemayer / PKGBUILD
Created December 9, 2013 10:00
python2-billiard 3.3.0.10 PKGBUILD
# Maintainer: Benjamin A. Shelton <zancarius@gmail.com>
# Source: https://github.com/zancarius/archlinux-pkgbuilds
pkgname=python2-billiard
pkgver=3.3.0.10
pkgrel=1
pkgdesc="Python multiprocessing fork with improvements and bugfixes."
arch=('i686' 'x86_64')
url="http://pypi.python.org/pypi/billiard"
license=(BSD)
CC = gcc
CFLAGS = -g -Wall -fPIC -lm -std=gnu99 -O3 -march=native -DCONJUGRAD_FLOAT=64
all: libmyfunc.so
m.PHONY : clean
libmyfunc.so: myfunc.o
gcc -shared -Wl,-soname,$@ -o $@ $^