summarylogtreecommitdiffstats
path: root/Rakefile
diff options
context:
space:
mode:
authorRalf Mueller2016-06-28 15:22:56 +0200
committerRalf Mueller2016-06-28 15:22:56 +0200
commitebe0ccdba9a5cdd4e7621a9dc9da2f9d703bbf7a (patch)
tree9b810be7095d232b3b61e5d4f537aaafe5e74bc6 /Rakefile
parentae79626379c71af426e2bae35ef3ebb87a2798d6 (diff)
downloadaur-ebe0ccdba9a5cdd4e7621a9dc9da2f9d703bbf7a.tar.gz
add builder logic
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
new file mode 100644
index 000000000000..1155fcacdc9d
--- /dev/null
+++ b/Rakefile
@@ -0,0 +1,9 @@
+file('.SRCINFO') do |t|
+ sh "makepkg --printsrcinfo > #{t.name}"
+end
+
+task :build do |t|
+ sh "makepkg"
+end
+
+task :default => [:build,'.SRCINFO']