# Maintainer: Markus Tacker <[email protected]>
# Based on the QL-700 PKGBUILD -> Jacob Alexander <[email protected]>
pkgname=brother-ql720nw-lpr
pkgver=1.0.1
const std = @import("std"); | |
const builtin = @import("builtin"); | |
pub fn build(b: *std.Build) !void { | |
const av = b.option(bool, "av", "Compile ffmpeg") orelse false; | |
const optimize = b.standardOptimizeOption(.{ .preferred_optimize_mode = .ReleaseFast }); | |
const dep_stb = b.dependency("stb", .{}); | |
const dep_ffmpeg = b.dependency("ffmpeg", .{}); | |
// Add a new step for compiling Ffmpeg |
# Maintainer: Markus Tacker <[email protected]>
# Based on the QL-700 PKGBUILD -> Jacob Alexander <[email protected]>
pkgname=brother-ql720nw-lpr
pkgver=1.0.1
# vi: set ft=ruby : | |
# -*- mode: ruby -*- | |
VAGRANTFILE_API_VERSION = "2" | |
BASE_URL="http://cloud-images.ubuntu.com/vagrant" | |
PRECISE32_URL="#{BASE_URL}/precise/current/precise-server-cloudimg-i386-vagrant-disk1.box" | |
PRECISE64_URL="#{BASE_URL}/precise/current/precise-server-cloudimg-amd64-vagrant-disk1.box" | |
QUANTAL32_URL="#{BASE_URL}/quantal/current/quantal-server-cloudimg-i386-vagrant-disk1.box" | |
QUANTAL64_URL="#{BASE_URL}/quantal/current/quantal-server-cloudimg-amd64-vagrant-disk1.box" | |
RARING32_URL="#{BASE_URL}/raring/current/raring-server-cloudimg-i386-vagrant-disk1.box" | |
RARING64_URL="#{BASE_URL}/raring/current/raring-server-cloudimg-amd64-vagrant-disk1.box" |