Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
de4me committed Jan 27, 2024
0 parents commit fdea764
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.DS_Store
/.build
/Packages
xcuserdata/
DerivedData/
.swiftpm/configuration/registries.json
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
.netrc
21 changes: 21 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
// swift-tools-version: 5.4
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "SDL_sound",
platforms: [
.macOS(.v10_13)
],
products: [
.library(
name: "SDL_sound",
targets: ["SDL_sound"]),
],
targets: [
.binaryTarget(name: "SDL_sound",
url: "https://github.com/de4me/SDL_sound-package/releases/download/1.0.4/SDL_sound.zip",
checksum: "a621daadbfbd84cb21adef8613b9218f63aaa76b37500fb99a97b80895fea7f1")
]
)
8 changes: 8 additions & 0 deletions Package.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package: SDL_sound
platformname: macosx
date: macosx(27.01.2024, 21.21.41)
minimumversion: macosx(10.13)
platformversion: macosx(14.2)
sdkversion: macosx(1520)
bundleversion: macosx(1.0.4)
checksum: a621daadbfbd84cb21adef8613b9218f63aaa76b37500fb99a97b80895fea7f1

0 comments on commit fdea764

Please sign in to comment.