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 April 7, 2015 11:02
trillian 2.0.0.4 PKGBUILD
# Maintainer: Marius Nestor <marius softpedia com>
# Contributor: Doug Newgard <scimmia22 at outlook dot com>
pkgname=trillian
pkgver=2.0.0.4
pkgrel=1
pkgdesc="A commercial, multi-protocol and cross-platform IM client"
arch=('i686' 'x86_64')
url="https://www.trillian.im"
license=('Proprietary')
@sseemayer
sseemayer / PKGBUILD
Created February 17, 2015 12:45
dia2code 0.8.7 PKGBUILD
# Maintainer: Markus Heuser <[email protected]
# Contributor: Markus Heuser <[email protected]>
pkgname=dia2code
pkgver=0.8.7
pkgrel=1
pkgdesc="Generates code in various languages from your Dia drawings"
arch=('x86_64' 'i686')
url="http://dia2code.sourceforge.net/"
@sseemayer
sseemayer / PKGBUILD
Created August 15, 2014 17:17
texturepacker 3.4.0 PKGBUILD
# Maintainer: Gordin <9ordin @t gmail dot com>
pkgname=texturepacker
pkgver=3.4.0
pkgrel=1
pkgdesc="The most complete tool for sprite sheet creation and image optimization"
arch=('x86_64')
url="http://www.texturepacker.com"
license=('unknown')
install='texturepacker.install'
ARCH='64'
@sseemayer
sseemayer / PKGBUILD
Created August 12, 2014 12:08
trillian 1.2.0.2-1 PKGBUILD
# Maintainer: Marius Nestor <marius softpedia com>
# Contributor: Doug Newgard <scimmia22 at outlook dot com>
pkgname=trillian
pkgver=1.2.0.2
pkgrel=1
pkgdesc="A commercial, multi-protocol and cross-platform IM client"
arch=('i686' 'x86_64')
url="https://www.trillian.im"
license=('Proprietary')
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 $@ $^
@sseemayer
sseemayer / PKGBUILD
Created December 9, 2013 10:00
python2-billiard 3.3.0.10 PKGBUILD
# Maintainer: Benjamin A. Shelton <[email protected]>
# 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)
@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 November 20, 2013 10:18
python2-amqp 1.3.3 PKGBUILD
# Maintainer: Xeross <[email protected]>
# Contributor: Timothée Ravier <[email protected]>
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
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")
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) $<